Skip to content

Instantly share code, notes, and snippets.

@kishoreandra
Created August 13, 2022 06:30
Show Gist options
  • Save kishoreandra/3b1933510310071cf8e7eca62ecd9d2c to your computer and use it in GitHub Desktop.
Save kishoreandra/3b1933510310071cf8e7eca62ecd9d2c to your computer and use it in GitHub Desktop.
gristoi - curried function - handler
myFunc(myVar){
return function(event){... do stuff}
}
// or
const myFunc = (myVar) => (event) => {...do stuff}
// in child
<button onClick={myFunc('a')}>click me </button>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment