Created
May 25, 2021 16:14
-
-
Save bwaidelich/dc44e6abbf977faaba4b506296790fc1 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 nestedStates = { | |
initial: 'a1', | |
states: { | |
a1: { | |
on: { | |
FOO: "a2" | |
} | |
}, | |
a2: { | |
type: "final" | |
} | |
} | |
}; | |
const machine = Machine({ | |
initial: 'a', | |
states: { | |
a: { | |
onDone: "b", | |
...nestedStates | |
}, | |
b: {} | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment