Skip to content

Instantly share code, notes, and snippets.

@naush
Created August 14, 2020 02:02
Show Gist options
  • Save naush/aaf02e38205282e8683980f2e4d15a3a to your computer and use it in GitHub Desktop.
Save naush/aaf02e38205282e8683980f2e4d15a3a to your computer and use it in GitHub Desktop.
const Buttons = () => {
const { dispatch, } = React.useContext(DarumaContext);
return (
<>
<UndoIcon
onClick={() => dispatch({ type: Actions.UNDO })}
/>
<BrushIcon
onClick={() => dispatch({ type: Actions.PAINT })}
/>
</>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment