Last active
June 1, 2021 12:55
-
-
Save justinobney/3ab82153c3e4a62a07d86b3ad8c03956 to your computer and use it in GitHub Desktop.
actionable*
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
actionable* | |
STAGE -> staged | |
staged | |
SCHEDULE -> scheduled | |
SKIP -> skipped | |
scheduled | |
PROCESS -> processing | |
CANCEL -> cancelled | |
processing | |
SUCCESS -> processed | |
FAIL -> processed | |
processed | |
cancelled | |
skipped |
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) | |
return <h1>Current State: {model.active_states[0].name}</h1> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment