) {
const handleChange = (rValue: V): void => {
console.log(value)
onChange(rValue)
}
const isOptions = options?.length > 0
return (
{isOptions
? options.map((option, index) => )
: children}
)
}
export default RadioGroup
export type { RadioGroupProps }