UNPKG

@engie-group/fluid-design-system-react

Version:

Fluid Design System React

9 lines (6 loc) 273 B
import React, { createContext } from 'react'; type NJRadioGroupContextType = { change?: (id: string, value: string, event: React.ChangeEvent<HTMLInputElement>) => void; value?: string; }; export const NJRadioGroupContext = createContext<NJRadioGroupContextType>({});