Created
June 29, 2020 14:51
-
-
Save kellyjandrews/a8a33932a88951692a8c94de647db40b to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const lightBulb = Machine({ | |
id: 'lightBulb', | |
initial: 'off', | |
states: { | |
off: { | |
on: { | |
TURN_ON: 'on' | |
} | |
}, | |
on: { | |
on: { | |
TURN_OFF: 'off', | |
} | |
} | |
} | |
}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment