Skip to content

Instantly share code, notes, and snippets.

@john-bell-gw
Created December 2, 2021 14:15
Show Gist options
  • Save john-bell-gw/cbc58c0c32bddf3d7b419a16ca766aaa to your computer and use it in GitHub Desktop.
Save john-bell-gw/cbc58c0c32bddf3d7b419a16ca766aaa to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const lit = {on: {BREAK: 'broken', TOGGLE: 'unlit'}}
const unlit = {
on: {
BREAK: 'broken',
TOGGLE: 'lit'
}
}
const broken = { }
const states = { lit, unlit, broken}
const initial = 'lit'
const config = {
id: 'lightbulb',
strict: true,
initial,
states,
}
const lightBulbMachine = Machine(config)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment