Skip to content

Instantly share code, notes, and snippets.

@goldcaddy77
Created December 17, 2019 00:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save goldcaddy77/f12af6ada90870c1144e9266e59742d5 to your computer and use it in GitHub Desktop.
Save goldcaddy77/f12af6ada90870c1144e9266e59742d5 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const fetchMachine = Machine({
id: 'fetch',
initial: 'idle',
context: {
retries: 0
},
states: {
idle: {
on: {
FETCH: 'success'
}
},
success: {
type: 'final'
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment