UNPKG

vzcode

Version:
10 lines (8 loc) 213 B
import { VZAction, VZState } from '.'; export const setThemeReducer = ( state: VZState, action: VZAction, ): VZState => action.type === 'set_theme' ? { ...state, theme: action.themeLabel } : state;