@react-md/autocomplete
Version:
Create an accessible autocomplete component that allows a user to get real-time suggestions as they type within an input. This component can also be hooked up to a backend API that handles additional filtering or sorting.
12 lines (10 loc) • 303 B
text/typescript
export * from "./AutoComplete";
export * from "./HighlightedResult";
export * from "./useAutoComplete";
export {
isResultOf,
getResultId as DEFAULT_GET_RESULT_ID,
getResultLabel as DEFAULT_GET_RESULT_LABEL,
getResultValue as DEFAULT_GET_RESULT_VALUE,
} from "./utils";
export * from "./types";