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

9 lines
170 B
TypeScript
Raw Normal View History

import { combineReducers } from 'redux';
import themeReducer from './theme';
const rootReducer = combineReducers({
theme: themeReducer
})
export default rootReducer;