X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/cf48e928d4d334b0b6434529d7619c616da319f2..6ee23f0a48cce527596ef1f260b40a71618326a5:/src/index.tsx diff --git a/src/index.tsx b/src/index.tsx index 5bd1dddb56..be01e0a076 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -6,15 +6,38 @@ import * as React from 'react'; import * as ReactDOM from 'react-dom'; import { Provider } from "react-redux"; import Workbench from './views/workbench/workbench'; -import store from "./store/store"; import './index.css'; +import { Route } from "react-router"; +import createBrowserHistory from "history/createBrowserHistory"; +import configureStore from "./store/store"; +import { ConnectedRouter } from "react-router-redux"; +import ApiToken from "./views-components/api-token/api-token"; +import authActions from "./store/auth/auth-action"; +import { authService } from "./services/services"; +import { getProjectList } from "./store/project/project-action"; +import { MuiThemeProvider } from '@material-ui/core/styles'; +import { CustomTheme } from './common/custom-theme'; + +const history = createBrowserHistory(); + +const store = configureStore(history); + +store.dispatch(authActions.INIT()); +store.dispatch(getProjectList(authService.getUuid())); const App = () => - - - ; + + + +
+ + +
+
+
+
; ReactDOM.render( - , + , document.getElementById('root') as HTMLElement );