Skip to content

Instantly share code, notes, and snippets.

@zapkub
Created November 14, 2018 15:47
Show Gist options
  • Save zapkub/afa660c0d420c779515fb3cbe31c162a to your computer and use it in GitHub Desktop.
Save zapkub/afa660c0d420c779515fb3cbe31c162a to your computer and use it in GitHub Desktop.
function component state before hook
// THIS COMPONENT CANNOT HAVE STATE
const MyInputComponent ({ value, onChange }) => {
return (
<input value={value} onChange={onChange} />
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment