UNPKG

vzcode

Version:
10 lines (8 loc) 247 B
import { VZAction, VZState } from '.'; export const editorNoLongerWantsFocusReducer = ( state: VZState, action: VZAction, ): VZState => action.type === 'editor_no_longer_wants_focus' ? { ...state, editorWantsFocus: false } : state;