Skip to content

Instantly share code, notes, and snippets.

@scarletquasar
Last active May 19, 2022 13:10
Show Gist options
  • Save scarletquasar/6be7e41ee46793077c994e3886b92d55 to your computer and use it in GitHub Desktop.
Save scarletquasar/6be7e41ee46793077c994e3886b92d55 to your computer and use it in GitHub Desktop.
const options = {
upload: () => <UploadScreen />,
platformSelection: () => <PlatformSelectionScreen />,
login: => () => <LoginScreen />,
details: => () => <DetailsScreen />,
review: => () => <ReviewScreen />,
finish: => () => <UploadButton />
}
return (
<>{options[myOption]()}</>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment