Skip to content

Instantly share code, notes, and snippets.

@naush
Last active August 14, 2020 02:04
Show Gist options
  • Save naush/84c5bd8e179e355597c90c4139593dc3 to your computer and use it in GitHub Desktop.
Save naush/84c5bd8e179e355597c90c4139593dc3 to your computer and use it in GitHub Desktop.
const Daruma = () => {
const { state, } = React.useContext(DarumaContext);
switch (state) {
case WishState.PENDING:
return <DarumaPending />;
case WishState.STARTED:
return <DarumaStarted />;
default:
return <DarumaFulfilled />;
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment