1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-08-10 04:55:17 +02:00
flame/client/src/store/reducers/index.ts

19 lines
516 B
TypeScript
Raw Normal View History

import { combineReducers } from 'redux';
import { GlobalState } from '../../interfaces/GlobalState';
import themeReducer from './theme';
2021-05-10 19:02:16 +02:00
import appReducer from './app';
import bookmarkReducer from './bookmark';
import notificationReducer from './notification';
import configReducer from './config';
const rootReducer = combineReducers<GlobalState>({
2021-05-10 19:02:16 +02:00
theme: themeReducer,
app: appReducer,
bookmark: bookmarkReducer,
notification: notificationReducer,
config: configReducer
})
export default rootReducer;