Skip to content

Instantly share code, notes, and snippets.

@BobToninho
Last active September 24, 2021 13:56
Show Gist options
  • Save BobToninho/1c111a6c9b75deb66dc8acce6d5b9634 to your computer and use it in GitHub Desktop.
Save BobToninho/1c111a6c9b75deb66dc8acce6d5b9634 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 maintenanceMachine = Machine({
id: 'maintenance',
initial: 'ok',
states: {
ok: {
on: {
THRESHOLD_PASSED: 'todo'
}
},
todo: {
on: {
MAINTENANCE_OK: 'ok',
THRESHOLD_PASSED: 'not-done'
}
},
'not-done': {
on: {
MAINTENANCE_OK: 'ok'
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment