1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-27 23:09:35 +02:00
flame/client/src/store/reducers/index.ts

17 lines
453 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';
const rootReducer = combineReducers<GlobalState>({
2021-05-10 19:02:16 +02:00
theme: themeReducer,
app: appReducer,
bookmark: bookmarkReducer,
notification: notificationReducer
})
export default rootReducer;