X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/6e4ce0e45818dac7d6abc6456e85d49798d16458..3664cf869c1bdb38e62ffd35d16dee0c12af7c59:/src/index.tsx diff --git a/src/index.tsx b/src/index.tsx index 8935470323..67de95fb3a 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -8,26 +8,29 @@ import { Provider } from "react-redux"; import Workbench from './views/workbench/workbench'; import ProjectList from './components/project-list/project-list'; import './index.css'; -import { Redirect, Route, RouteProps, Router, RouterProps } from "react-router"; +import { Route } from "react-router"; import createBrowserHistory from "history/createBrowserHistory"; import configureStore from "./store/store"; import { ConnectedRouter } from "react-router-redux"; import ApiToken from "./components/api-token/api-token"; +import authActions from "./store/auth/auth-action"; +import { projectService } from "./services/services"; const history = createBrowserHistory(); const store = configureStore({ projects: [ - { name: 'Mouse genome', createdAt: '2018-05-01' }, - { name: 'Human body', createdAt: '2018-05-01' }, - { name: 'Secret operation', createdAt: '2018-05-01' } ], router: { location: null }, auth: { + user: undefined } }, history); +store.dispatch(authActions.INIT()); +store.dispatch(projectService.getTopProjectList()); + const App = () =>