import _ from 'lodash'; ... doSearch(text) { // Your normal handler here } ... // Delay autocomplete until 500 ms after use stops typing <AutoComplete onUpdateInput={_.debounce((value) => doSearch(value), 500)} ... />