Last active
May 16, 2019 10:35
-
-
Save klemola/6746221df1265acdc32e7170be2e0430 to your computer and use it in GitHub Desktop.
This file contains 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
function render(appState: AppState) { | |
switch (appState.type) { | |
case "Initializing": | |
return "Loading..."; | |
case "Ready": | |
const { username } = appState.user; | |
const { greeting } = appState.translations; | |
return `${greeting}, ${username}`; | |
case "Failing": | |
return "Could not initialize the application!"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment