Skip to content

Instantly share code, notes, and snippets.

@klemola
Last active May 16, 2019 10:35
Show Gist options
  • Save klemola/6746221df1265acdc32e7170be2e0430 to your computer and use it in GitHub Desktop.
Save klemola/6746221df1265acdc32e7170be2e0430 to your computer and use it in GitHub Desktop.
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