Skip to content

Instantly share code, notes, and snippets.

@wzulfikar
Last active July 25, 2019 09:05
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 wzulfikar/c63733d6f7847d5d5fc89d6d9d26f9fb to your computer and use it in GitHub Desktop.
Save wzulfikar/c63733d6f7847d5d5fc89d6d9d26f9fb to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const fetchMachine = Machine({
id: 'Point of Sale',
initial: 'place order',
context: {
retries: 0
},
states: {
'place order': {
on: {
'unpack qr': 'qrcode'
}
},
'qrcode': {
on: {
'dealer scan': 'dashboard',
'customer scan': 'dashboard'
}
},
dashboard: ''
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment