1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import * as React from 'react';
6 import * as ReactDOM from 'react-dom';
7 import { Provider } from "react-redux";
8 import Workbench from './views/workbench/workbench';
10 import { Route } from "react-router";
11 import createBrowserHistory from "history/createBrowserHistory";
12 import configureStore from "./store/store";
13 import { ConnectedRouter } from "react-router-redux";
14 import ApiToken from "./views-components/api-token/api-token";
15 import authActions from "./store/auth/auth-action";
16 import { authService } from "./services/services";
17 import { getProjectList } from "./store/project/project-action";
18 import { MuiThemeProvider } from '@material-ui/core/styles';
19 import { CustomTheme } from './common/custom-theme';
21 const history = createBrowserHistory();
23 const store = configureStore(history);
25 store.dispatch(authActions.INIT());
26 store.dispatch<any>(getProjectList(authService.getUuid()));
29 <MuiThemeProvider theme={CustomTheme}>
30 <Provider store={store}>
31 <ConnectedRouter history={history}>
33 <Route path="/" component={Workbench} />
34 <Route path="/token" component={ApiToken} />
42 document.getElementById('root') as HTMLElement