mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 12:38:39 -09:00
18 lines
448 B
TypeScript
18 lines
448 B
TypeScript
import {combineReducers} from 'redux';
|
|
import ui, {IUiReducer} from './ui';
|
|
import sessions, {ISessionReducer} from './sessions';
|
|
import termGroups, {ITermGroupReducer} from './term-groups';
|
|
import {HyperActions} from '../hyper';
|
|
|
|
export default combineReducers<
|
|
{
|
|
ui: ReturnType<IUiReducer>;
|
|
sessions: ReturnType<ISessionReducer>;
|
|
termGroups: ReturnType<ITermGroupReducer>;
|
|
},
|
|
HyperActions
|
|
>({
|
|
ui,
|
|
sessions,
|
|
termGroups
|
|
});
|