Skip to content

Instantly share code, notes, and snippets.

@naush
Last active August 14, 2020 02:04
Show Gist options
  • Save naush/207fcb878240810456b332805419276a to your computer and use it in GitHub Desktop.
Save naush/207fcb878240810456b332805419276a to your computer and use it in GitHub Desktop.
const App = () => {
const [state, setState] = React.useState(WishState.PENDING);
return (
<>
<Daruma
state={state}
/>
<Buttons
paint={() => setState(forward(state))}
undo={() => setState(backward(state))}
/>
</>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment