Skip to content

Instantly share code, notes, and snippets.

@jcdickinson
Last active July 1, 2021 19:47
Show Gist options
  • Save jcdickinson/80a1e10a9f6aae4b0d67d530a1c90201 to your computer and use it in GitHub Desktop.
Save jcdickinson/80a1e10a9f6aae4b0d67d530a1c90201 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const DragMachine = null;
const fetchMachine = Machine({
id: "exampleParent",
initial: "idle",
context: {
x: 0,
y: 0,
},
states: {
idle: {
on: {
pointerdown: "dragging"
},
},
dragging: {
invoke: {
id: "drag",
src: DragMachine,
onDone: "idle",
autoForward: true
},
},
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment