Skip to content

Instantly share code, notes, and snippets.

@mrsln
Last active March 26, 2020 13:52
Show Gist options
  • Save mrsln/f2e9204d77bea65c1eb7e9a651131b56 to your computer and use it in GitHub Desktop.
Save mrsln/f2e9204d77bea65c1eb7e9a651131b56 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 fetchMachine = Machine({
id: 'studio',
initial: 'idle',
context: {
selection: {
x: 0,
y: 0,
width: 0,
height: 0,
}
},
states: {
idle: {
},
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment