Skip to content

Instantly share code, notes, and snippets.

@naush
Last active August 14, 2020 01:54
Show Gist options
  • Save naush/7c317733a99656d5b2f653e5d7181a9e to your computer and use it in GitHub Desktop.
Save naush/7c317733a99656d5b2f653e5d7181a9e to your computer and use it in GitHub Desktop.
type DarumaProps = {
state: WishState,
};
const Daruma = ({
state,
}: DarumaProps) => {
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