Skip to content

Instantly share code, notes, and snippets.

@isaacplmann
Created November 12, 2019 15:42
Show Gist options
  • Save isaacplmann/6920dc0ab3b47224d8e4aa4c44776ee1 to your computer and use it in GitHub Desktop.
Save isaacplmann/6920dc0ab3b47224d8e4aa4c44776ee1 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
// - XState (all XState exports)
/*
States:
- ground
- ladder
- topOfSlide
Events:
- CLIMB_UP
- CLIMB_DOWN
- SLIDE
*/
const myMachine = Machine({
id: 'slide',
initial: 'ground',
states: {
ground: {}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment