Created
October 19, 2018 00:48
-
-
Save TheSisb/7856480df59a8725c5a9d825661e3174 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 |
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