Skip to content

Instantly share code, notes, and snippets.

@BryceAMcDaniel
Created August 5, 2021 23:41
Show Gist options
  • Save BryceAMcDaniel/3e0df0f5b1d586e6f6c0fc5d0226fc0a to your computer and use it in GitHub Desktop.
Save BryceAMcDaniel/3e0df0f5b1d586e6f6c0fc5d0226fc0a 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: 'fetch',
initial: 'idle',
context: {
retries: 0
},
states: {
idle: {},
fetching: {},
noProfile: {},
fail: {},
creatingProfile: {},
success: {},
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment