Last active
October 18, 2018 21:37
-
-
Save TheSisb/9d00c4622d9072af6c6c923563a66eae to your computer and use it in GitHub Desktop.
Server create
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
Server create | |
Selection | |
CREATE_SERVER -> Create | |
JOIN_SERVER -> Join | |
Join | |
BACK -> Selection | |
Create | |
BACK -> Selection | |
New State Machine | |
SHOW_TOOLTIP -> a | |
a |
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(model) { | |
console.log(model); | |
let current_state_name = model.active_states[0].name; | |
return <div style={{color: "darkBlue"}}>The current state is: {current_state_name}</div>; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment