interface DropdownProps {
    onSelect: (value: string) => void;
    options: string[];
}

Properties

Properties

onSelect: (value: string) => void
options: string[]