Last active
December 2, 2020 16:25
-
-
Save StevenLangbroek/314c242063d9a7b12f1f8009c43da855 to your computer and use it in GitHub Desktop.
Research
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
Research | |
Draft | |
Draft PR submitted -> Input | |
Input | |
Input provided -> RFC | |
RFC | |
Proposed* | |
For -> Accepted | |
Against -> Rejected | |
Needs more Info -> Proposed | |
Accepted | |
Superseded -> Superseded by | |
Rejected | |
Superseded by | |
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 state(state) { | |
return | |
} | |
function render(model) { | |
let current_state_name = model.active_states[0].name; | |
return $( | |
"h1", | |
{style: {color: "darkBlue"}}, | |
$( | |
'em', | |
{}, | |
`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