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

11 lines
221 B
TypeScript
Raw Normal View History

import { combineReducers } from 'redux';
import themeReducer from './theme';
2021-05-10 19:02:16 +02:00
import appReducer from './app';
const rootReducer = combineReducers({
2021-05-10 19:02:16 +02:00
theme: themeReducer,
app: appReducer
})
export default rootReducer;