Add basic application skeleton
[arvados-workbench2.git] / src / store / root-reducer.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { combineReducers } from "redux";
6 import { StateType } from "typesafe-actions";
7 import projectsReducer from "./project-reducer";
8
9 const rootReducer = combineReducers({
10     projects: projectsReducer
11 });
12
13 export type RootState = StateType<typeof rootReducer>;
14
15 export default rootReducer;