session-desktop/ts/state/selectors/timerOptions.ts
2021-07-06 14:40:45 +10:00

4 lines
192 B
TypeScript

import { StateType } from '../reducer';
import { TimerOptionsState } from '../ducks/timerOptions';
export const getTimerOptions = (state: StateType): TimerOptionsState => state.timerOptions;