Skip to content

Instantly share code, notes, and snippets.

@argodeep
Created June 26, 2020 15:38
Show Gist options
  • Select an option

  • Save argodeep/fc70f8c71db9d726dbaf14e530567914 to your computer and use it in GitHub Desktop.

Select an option

Save argodeep/fc70f8c71db9d726dbaf14e530567914 to your computer and use it in GitHub Desktop.
React Child to Parent
function handleInput(input: string) {
setKeyword(input)
if (input) {
props.onChange(input);
} else {
props.onChange('')
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment