Skip to content

Instantly share code, notes, and snippets.

@chaance
Created January 12, 2021 22:24
Show Gist options
  • Save chaance/d42d34841cee358dec898ac142ba0547 to your computer and use it in GitHub Desktop.
Save chaance/d42d34841cee358dec898ac142ba0547 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 toastMachine = Machine({
id: 'toast',
initial: 'idle',
context: {
retries: 0
},
states: {
idle: {
on: {
FETCH: 'loading'
}
},
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment