UNPKG

@zohodesk/hooks

Version:

Unified Component Library - Hooks

13 lines (12 loc) 236 B
import { SELECT } from "./constants"; export default function reducer(state, action) { switch (action.type) { case SELECT: { return { selected: action.data.selected }; } } return state; }