import React from "react" import ReactDOM from "react-dom" import App from "./components/App" import queryString from "query-string" import { parseProps } from "utils" import { ErrorBoundary } from "utils/notifier" import "../css/popup.scss" const parsedProps = parseProps([ "loading", "service", "projects", "activities", "schedules", "lastProjectId", "lastTaskId", "roundTimeEntries", "lastProjectId", "lastTaskId", "fromDate", "toDate", "errorType", "errorMessage" ])(queryString.parse(location.search)) ReactDOM.render( , document.querySelector("#moco-bx-root") )