Skip to content

Instantly share code, notes, and snippets.

@robertpenner
Last active July 15, 2021 18:11
Show Gist options
  • Save robertpenner/a43ebd63792fffc3ada772b91d2982b8 to your computer and use it in GitHub Desktop.
Save robertpenner/a43ebd63792fffc3ada772b91d2982b8 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const machine = Machine({
id: 'modalMachine',
initial: 'closed',
states: {
closed: {
on: {
OPEN: 'open',
TOGGLE: 'open',
},
},
closing: {
after: {
1000: 'closed',
},
},
open: {
on: {
CLOSE: 'closing',
TOGGLE: 'closing',
},
},
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment