Skip to content

Instantly share code, notes, and snippets.

@rlingineni
Created March 16, 2021 20:26
Show Gist options
  • Save rlingineni/76a77da8cb92bd132ebea0b2f4b433ff to your computer and use it in GitHub Desktop.
Save rlingineni/76a77da8cb92bd132ebea0b2f4b433ff to your computer and use it in GitHub Desktop.
User Flow Purchase a Product
User Flow Purchase a Product
Search for Product
Select Item -> View Product Description
View Product Description
Checkout Form -> Validate Card Details
Validate Card Details
Card valid -> Complete Checkout
Card invalid -> Invalid Details
Valid Details
Card valid -> Complete Checkout
Invalid Details
Card valid -> Validate Card Details
Complete Checkout
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