X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/eeb82d50816250cc6287928e6d958affa73880ee..09c61f87d52388ebfe97f478d536f4f194755401:/src/store/store.ts diff --git a/src/store/store.ts b/src/store/store.ts index d541156e2d..6b9c31ff4e 100644 --- a/src/store/store.ts +++ b/src/store/store.ts @@ -8,6 +8,7 @@ import thunkMiddleware from 'redux-thunk'; import { History } from "history"; import projectsReducer, { ProjectState } from "./project/project-reducer"; import authReducer, { AuthState } from "./auth/auth-reducer"; +import collectionsReducer from "./collection/collection-reducer"; const composeEnhancers = (process.env.NODE_ENV === 'development' && @@ -15,14 +16,15 @@ const composeEnhancers = compose; export interface RootState { - auth: AuthState, - projects: ProjectState, - router: RouterState + auth: AuthState; + projects: ProjectState; + router: RouterState; } const rootReducer = combineReducers({ auth: authReducer, projects: projectsReducer, + collections: collectionsReducer, router: routerReducer });