Last active
May 19, 2022 13:10
-
-
Save scarletquasar/6be7e41ee46793077c994e3886b92d55 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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