Created
November 16, 2019 14:23
-
-
Save avanslaars/7a07bf996f8bb139d0bd626511bca1f4 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 toggleMachine = Machine({ | |
id: 'toggle', | |
initial: 'active', | |
states: { | |
active: { | |
on: { | |
TOGGLE: 'inactive' | |
} | |
}, | |
inactive: { | |
on: { | |
TOGGLE: 'active' | |
} | |
} | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment