UNPKG

easy-combo-box

Version:
12 lines (11 loc) 321 B
import React from "react"; export default function ComboBox(props: ComboBoxProps): React.JSX.Element; interface ComboBoxProps { data: string[]; inputClassName?: string; listItemClassName?: string; listWrapperClassName?: string; onClick: (value: string) => void; placeholder?: string; } export {};