import { combineReducers } from 'redux'; import { GlobalState } from '../../interfaces/GlobalState'; import themeReducer from './theme'; import appReducer from './app'; import bookmarkReducer from './bookmark'; const rootReducer = combineReducers({ theme: themeReducer, app: appReducer, bookmark: bookmarkReducer }) export default rootReducer;