UNPKG

@zohodesk/hooks

Version:

Unified Component Library - Hooks

16 lines (15 loc) 284 B
import { CLICK } from "./constants"; export default function radioReducer(state, action) { switch (action.type) { case CLICK: { return { selectedValue: action.data.selectedValue }; } default: { return state; } } }