in src/reducers/ui.ts [29:45]
export default (state: IUI = INITIAL_STATE, action: Action) => {
if (isType(action, actions.ui.useDarkTheme)) {
return {
...state,
darkTheme: true
}
}
if (isType(action, actions.ui.useLightTheme)) {
return {
...state,
darkTheme: false
}
}
return state
}