Last active
August 17, 2018 09:55
-
-
Save FrigoEU/6aa3ffac7f698d5732fbc482b647ef20 to your computer and use it in GitHub Desktop.
Import Screen
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
Import Screen | |
Not Yet Imported* | |
Initial | |
import is ok -> Imported | |
wrong format -> Display Error | |
Display Error | |
import is ok -> Imported | |
wrong format -> Display Error | |
Imported | |
No Errors | |
save -> Saved | |
Errors* | |
correct errors -> No Errors | |
Saved | |
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
function render(model){ | |
let current_state_name = model.active_states[0].name; | |
return $("h1", | |
{style: {color: "darkBlue"}}, | |
`The current state is: ${current_state_name}`); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment