UNPKG

vzcode

Version:
10 lines (8 loc) 220 B
import { VZAction, VZState } from '.'; export const setUsernameReducer = ( state: VZState, action: VZAction, ): VZState => action.type === 'set_username' ? { ...state, username: action.username } : state;