Skip to content

Instantly share code, notes, and snippets.

@YouMinTW
Last active October 8, 2021 13:18
Show Gist options
  • Save YouMinTW/7278c6d99e96c9fff14c0acdd938c04e to your computer and use it in GitHub Desktop.
Save YouMinTW/7278c6d99e96c9fff14c0acdd938c04e to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const parallelMachine = Machine({
id: "myParallelMachineId",
type: "parallel",
states: {
state1: {
initial: "state1-1",
states: {
"state1-1": {
on: {
"event1-1": { target: "state1-2" },
},
},
"state1-2": {
on: {
"event1-2": { target: "state1-1" },
},
},
},
},
state2: {
initial: "state2-1",
states: {
"state2-1": {
on: {
"event2-1": { target: "state2-2" },
},
},
"state2-2": {
on: {
"event2-2": { target: "state2-1" },
},
},
},
},
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment