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

14 lines
360 B
TypeScript
Raw Normal View History

import { combineReducers } from 'redux';
import { themeReducer } from './theme';
import { configReducer } from './config';
import { notificationReducer } from './notification';
export const reducers = combineReducers({
2021-05-10 19:02:16 +02:00
theme: themeReducer,
config: configReducer,
notification: notificationReducer,
});
export type State = ReturnType<typeof reducers>;