@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.
9 lines • 369 B
JavaScript
/**
* @module @react-md/autocomplete
*/
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";
//# sourceMappingURL=index.js.map