UNPKG

lucid-ui

Version:

A UI component library from AppNexus.

13 lines (11 loc) 200 B
export interface IRadioGroupState { selectedIndex?: number; } export default { onSelect(state: IRadioGroupState = {}, selectedIndex: number) { return { ...state, selectedIndex, }; }, };