Skip to content

Instantly share code, notes, and snippets.

@Shaxadhere
Created May 26, 2023 13:48
Show Gist options
  • Save Shaxadhere/fe2e3f7d8974fb5cf57799f90f78100d to your computer and use it in GitHub Desktop.
Save Shaxadhere/fe2e3f7d8974fb5cf57799f90f78100d to your computer and use it in GitHub Desktop.
const handleQueryChange = (updatedQuery) => {
setQuery({ ...query, ...updatedQuery })
}
const debounceFn = useCallback(_.debounce(handleQueryChange, 500), []);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment