Skip to content

Instantly share code, notes, and snippets.

@Hydrock
Created August 25, 2021 11:24
Show Gist options
  • Save Hydrock/f30093062ca141cde4a0b62081c3ef0c to your computer and use it in GitHub Desktop.
Save Hydrock/f30093062ca141cde4a0b62081c3ef0c to your computer and use it in GitHub Desktop.
import { useDeferredValue } from "react";
// ...
const [text, setText] = useState("text");
const deferredText = useDeferredValue(text, { timeoutMs: 2000 });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment