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