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

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