Skip to content

Instantly share code, notes, and snippets.

@graphan
Created February 19, 2017 18:45
Show Gist options
  • Save graphan/781c5aaa628553acb4209a70cf0b3a3e to your computer and use it in GitHub Desktop.
Save graphan/781c5aaa628553acb4209a70cf0b3a3e to your computer and use it in GitHub Desktop.
Old way of handlers in React Components
export const Component = () => {
const onClickHandler = () => {
...
};
return (
<div onClick={onClickHandler}></div>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment