Skip to content

Instantly share code, notes, and snippets.

@tivac
Last active March 15, 2020 18:51
Show Gist options
  • Save tivac/f6d523dbbc98f89f7a220e6ada42f2bd to your computer and use it in GitHub Desktop.
Save tivac/f6d523dbbc98f89f7a220e6ada42f2bd to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const childMachine = Machine({
initial : "child1",
states : {
child1 : {
on : {
CHILD : "child2",
},
},
child2 : {
},
},
});
const testMachine = Machine({
initial : "one",
invoke : {
id : "child",
src : childMachine,
autoForward : true,
},
states : {
one : {
on : {
PARENT : "two",
},
},
two : {
},
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment