Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ooloth
Last active October 17, 2019 17:09
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 ooloth/c70992b5ba5c5a86338588ea550439b2 to your computer and use it in GitHub Desktop.
Save ooloth/c70992b5ba5c5a86338588ea550439b2 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const cartMachine = Machine({
id: 'cartMachine',
initial: 'closed',
states: {
closed: {
on: {
OPEN: 'open',
},
},
open: {
on: {
CLOSE: 'closing',
},
},
closing: {
on: {
CLOSE_OVERLAY: 'closed',
},
},
},
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment