mirror of
https://github.com/pawelmalak/flame.git
synced 2026-03-06 20:43:13 +08:00
13 lines
295 B
TypeScript
13 lines
295 B
TypeScript
import { combineReducers } from 'redux';
|
|
|
|
import { GlobalState } from '../../interfaces/GlobalState';
|
|
|
|
import themeReducer from './theme';
|
|
import appReducer from './app';
|
|
|
|
const rootReducer = combineReducers<GlobalState>({
|
|
theme: themeReducer,
|
|
app: appReducer
|
|
})
|
|
|
|
export default rootReducer; |