Skip to content

Instantly share code, notes, and snippets.

@edsilv
Last active May 2, 2020 15:56
Show Gist options
  • Save edsilv/fd58c824826fa3a667c2571a5e6a8033 to your computer and use it in GitHub Desktop.
Save edsilv/fd58c824826fa3a667c2571a5e6a8033 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
// - XState (all XState exports)
const musicBoxMachine = Machine({
id: 'box',
initial: 'closed',
states: {
closed: {
on: {
open: 'opening'
}
},
opening: {
on: {
opened: 'rotating',
close: 'closing'
}
},
rotating: {
on: {
close: 'closing'
}
},
closing: {
on: {
closed: 'closed',
open: 'opening'
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment