Skip to content

Instantly share code, notes, and snippets.

@Jpadilla1
Created December 11, 2019 17:29
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 Jpadilla1/1c8e6a282a4a260fdf0b5319a3f115b1 to your computer and use it in GitHub Desktop.
Save Jpadilla1/1c8e6a282a4a260fdf0b5319a3f115b1 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const sparkStatus = Machine({
id: 'status-machine',
initial: 'setup',
context: {
sparkActor: null,
},
states: {
setup: {
entry: 'spawnSparkStatusUpdater',
on: {
'': 'disabled',
},
},
disabled: {
on: {
success: 'enabled',
},
},
enabled: {
on: {
failure: 'disabled',
},
},
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment