Created
June 23, 2023 04:20
-
-
Save 1zaak/095bdae0ac6cf172bea395ca18f58d42 to your computer and use it in GitHub Desktop.
Restaurant Sketch
This file contains hidden or 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
Restaurant Sketch | |
Onboarding | |
Sign up -> Registration Form | |
Registration Form | |
Restaurant name | |
Email of manager | |
Email of staffs | |
Submit -> Guided Tour | |
Guided Tour | |
Show screenshots of managing table states | |
Login | |
Submit -> Dashboard | |
Dashboard | |
Floor view | |
Upcoming bookings list | |
This file contains hidden or 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){ | |
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