Skip to content

Instantly share code, notes, and snippets.

@ihodes
Last active December 11, 2021 23:52
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 ihodes/71dd69c3b08eb57cf7d5babff3fdd7bc to your computer and use it in GitHub Desktop.
Save ihodes/71dd69c3b08eb57cf7d5babff3fdd7bc to your computer and use it in GitHub Desktop.
Eligibility
Eligibility
Select attribution
insurance -> Insurance validation
employed -> Employment validation
self-pay -> Self-pay
Insurance validation
valid-coverage -> Validated
invalid-coverage -> Try Again
Employment validation
valid-employment -> Validated
invalid-coverage -> Try Again
Self-pay
continue -> Validated
Validated
Try Again
try-again -> Eligibility
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