Skip to content

Instantly share code, notes, and snippets.

@eveporcello
Last active October 21, 2021 16:31
Show Gist options
  • Save eveporcello/978291ab7a65607bafb58dcdaf65a65d to your computer and use it in GitHub Desktop.
Save eveporcello/978291ab7a65607bafb58dcdaf65a65d to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const tahoeTravelMachine = Machine({
id: "ML-to-Live",
initial: "analysis",
states: {
analysis: {
on: {
COMPLETE: "data"
}
},
data: {
on: {
COMPLETE: "model"
}
},
feature: {
on: {
COMPLETE: "golive"
}
},
model: {
on: {
COMPLETE: "golive"
}
},
golive: {
type: "final"
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment