Skip to content

Instantly share code, notes, and snippets.

@StevenLangbroek
Last active December 2, 2020 16:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save StevenLangbroek/314c242063d9a7b12f1f8009c43da855 to your computer and use it in GitHub Desktop.
Save StevenLangbroek/314c242063d9a7b12f1f8009c43da855 to your computer and use it in GitHub Desktop.
Research
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
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