Skip to content

Instantly share code, notes, and snippets.

@gaperton
Last active May 8, 2019 04:48
Show Gist options
  • Save gaperton/089adc4af7b5838d3dbcf1dcd9ddcbaf to your computer and use it in GitHub Desktop.
Save gaperton/089adc4af7b5838d3dbcf1dcd9ddcbaf to your computer and use it in GitHub Desktop.
export const DelayedInput = ({ $value, timeout = 1000, …props }) => {
 const $inputValue = useBoundLink( $value );
 // TODO: How to sync the state back?
 return <input {…$inputValue.props} {…props}/>;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment