Skip to content

Instantly share code, notes, and snippets.

@wuweiweiwu
Created April 28, 2020 18:49
Show Gist options
  • Save wuweiweiwu/f53fd43d030b9992c2a4ad19d861646c to your computer and use it in GitHub Desktop.
Save wuweiweiwu/f53fd43d030b9992c2a4ad19d861646c 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: 'office',
initial: 'idle',
states: {
idle: {},
areaSelected: {
initial: 'idle',
states: {
idle: {},
assigning: {},
saving: {},
saved: {},
failed: {},
},
},
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment