mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-24 13:39:35 +02:00
17 lines
No EOL
453 B
TypeScript
17 lines
No EOL
453 B
TypeScript
import { combineReducers } from 'redux';
|
|
|
|
import { GlobalState } from '../../interfaces/GlobalState';
|
|
|
|
import themeReducer from './theme';
|
|
import appReducer from './app';
|
|
import bookmarkReducer from './bookmark';
|
|
import notificationReducer from './notification';
|
|
|
|
const rootReducer = combineReducers<GlobalState>({
|
|
theme: themeReducer,
|
|
app: appReducer,
|
|
bookmark: bookmarkReducer,
|
|
notification: notificationReducer
|
|
})
|
|
|
|
export default rootReducer; |