Skip to content

Instantly share code, notes, and snippets.

@eveporcello
Last active February 24, 2021 19:31
Show Gist options
  • Save eveporcello/6d7fcb268114419ea9a2262abedf5683 to your computer and use it in GitHub Desktop.
Save eveporcello/6d7fcb268114419ea9a2262abedf5683 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const tahoeTravelMachine = Machine({
id: "tahoe-travel",
initial: "walking",
states: {
walking: {
on: {
THUMBS_UP: "hitchhiking",
ARRIVED: "arrived"
}
},
hitchhiking: {
on: {
PICKED_UP: "riding",
PASSED_BY: "disappointed"
}
},
disappointed: {
on: {
WALK: "walking",
THUMBS_UP: "hitchhiking"
}
},
riding: {
on: {
NOT_GOING_FAR: "disappointed",
ARRIVED: "arrived"
}
},
arrived: {
type: "final"
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment