interface DropdownProps { label: string; options: readonly T[]; activeOption: T; onChange: (option: T) => void; } export default function Dropdown({ label, options, activeOption, onChange }: DropdownProps) { return (
); }