Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save brlafreniere/e39792f1ffa0c7194fe8d085c206e026 to your computer and use it in GitHub Desktop.
Save brlafreniere/e39792f1ffa0c7194fe8d085c206e026 to your computer and use it in GitHub Desktop.
const MyComponent = function(props) {
// does this get redefined each time MyComponent is rendered? And is that a significant performance loss?
function doStuff() {
...
}
return (
<form onSubmit={doStuff}>
...
</form>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment