Created
April 25, 2020 11:08
-
-
Save Mozart409/6d74f748dc3e3122d954e6e90a46b198 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains 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 toggleMachine = new Machine({ | |
id: 'toggle', | |
initial: 'inactive', | |
states: { | |
inactive: { on: { TOGGLE: 'active' } }, | |
active: { on: { TOGGLE: 'inactive' } } | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment