UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

7 lines (4 loc) 250 B
import { Context } from 'react'; import { RadioGroupProps } from './RadioGroup'; export interface RadioGroupState extends Pick<RadioGroupProps, 'name' | 'onChange' | 'value'> {} export default function useRadioGroup(): RadioGroupState | undefined;