import { ChangeEventHandler } from "react"; type Props = { label: string; state: boolean; onClick: ChangeEventHandler; }; export default function RadioButton({ label, state, onClick }: Props) { return ( ); }