Skip to content

Instantly share code, notes, and snippets.

@twopoint718
Last active October 27, 2021 21:22
Show Gist options
  • Save twopoint718/dab64ca11737abde23278d2dcb2981c9 to your computer and use it in GitHub Desktop.
Save twopoint718/dab64ca11737abde23278d2dcb2981c9 to your computer and use it in GitHub Desktop.
APP
APP
Start*
app created -> NewPolicy
NewPolicy
submit to new business -> Policy
Policy
underwriting accept -> PolicyUnderwritten
underwriting reject -> PolicyClosed
PolicyUnderwritten
PolicyClosed
function render(model){
let current_state_name = model.active_states[0].name;
return $("h1",
{style: {color: "darkBlue"}},
`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