Skip to content

Instantly share code, notes, and snippets.

@mhedges1
Last active September 22, 2020 22:25
Show Gist options
  • Save mhedges1/a79e427008dd17c7321bfcade20ba20e to your computer and use it in GitHub Desktop.
Save mhedges1/a79e427008dd17c7321bfcade20ba20e 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: 'run',
initial: 'default',
states: {
default: {
on: {
UPDATE: "updating"
},
updating: {}
},
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment