mirror of
https://github.com/pawelmalak/flame.git
synced 2025-08-04 10:25:17 +02:00
9 lines
170 B
TypeScript
9 lines
170 B
TypeScript
|
import { combineReducers } from 'redux';
|
||
|
|
||
|
import themeReducer from './theme';
|
||
|
|
||
|
const rootReducer = combineReducers({
|
||
|
theme: themeReducer
|
||
|
})
|
||
|
|
||
|
export default rootReducer;
|