mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-12 20:18:41 -09:00
14 lines
348 B
TypeScript
14 lines
348 B
TypeScript
import {combineReducers} from 'redux';
|
|
import type {Reducer} from 'redux';
|
|
|
|
import type {HyperActions, HyperState} from '../../typings/hyper';
|
|
|
|
import sessions from './sessions';
|
|
import termGroups from './term-groups';
|
|
import ui from './ui';
|
|
|
|
export default combineReducers({
|
|
ui,
|
|
sessions,
|
|
termGroups
|
|
}) as Reducer<HyperState, HyperActions>;
|