0.0.6 • Published 6 months ago
halo-textbox v0.0.6
import { TypeaheadTextbox } from 'typeahead-textbox';
const textbox = new TypeaheadTextbox('search', {
minLength: 2,
source: async (query) => {
const response = await fetch(/api/search?q=${query}
);
return response.json();
}
});