Created
April 22, 2021 13:05
-
-
Save erikras/f39d25bb5e52e1a5677903431b050fc6 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 memeMachine = Machine({ | |
id: 'meme', | |
initial: 'stateMachines', | |
states: { | |
stateMachines: { | |
on: { | |
NO_IDEA_WHAT_THEY_ARE: 'stateMachines', | |
OMG_THEYRE_EVERYWHERE: 'howDoesThisMemeWork' | |
} | |
}, | |
howDoesThisMemeWork: { | |
type: 'final' | |
} | |
} | |
}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment