import React from 'react'; import Radio from './Radio'; export type RadioOption = { id: string; label: string; value: string; disabled?: boolean; }; type RadioGroupProps = { name: string; options: RadioOption[]; value: string; onChange: (value: string) => void; }; const DefaultRadioGroup = ({ name, options, value, onChange, }: RadioGroupProps) => { const handleRadioGroupChange = ( event: React.ChangeEvent, ) => { onChange(event.target.value); }; return (
{options.map(option => (
))}
); }; export default DefaultRadioGroup;