export type RadioOption = { value: V; label: string }; export type RadioGroupProps = { name: string; value: V; onChange: (value: V) => void; options: Array>; disabled?: boolean; }; export function RadioGroup(props: RadioGroupProps) { return (
{props.options.map((opt) => ( ))}
); }