Skip to content

Instantly share code, notes, and snippets.

@naush
Last active August 14, 2020 01:56
Show Gist options
  • Save naush/e270d197376b0b9221cc0a9faeb6e422 to your computer and use it in GitHub Desktop.
Save naush/e270d197376b0b9221cc0a9faeb6e422 to your computer and use it in GitHub Desktop.
type ButtonsProps = {
paint: () => void,
undo: () => void,
};
const Buttons = ({
paint,
undo,
}: ButtonsProps) => {
return (
<>
<UndoIcon
onClick={undo}
/>
<BrushIcon
onClick={paint}
/>
</>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment