Skip to content

Instantly share code, notes, and snippets.

@johnnydecimal
Created September 21, 2020 22:20
Show Gist options
  • Save johnnydecimal/754c43852ef7e69ef9af3c1f27184455 to your computer and use it in GitHub Desktop.
Save johnnydecimal/754c43852ef7e69ef9af3c1f27184455 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const hardwareMachine = Machine({
strict: true,
initial: "start",
states: {
start: {
on: {
CONFIRM_FINAL_REQUIREMENTS: "prepare_and_order"
}
},
prepare_and_order: {
entry: ["order_harware", "reserve_whitespace"]
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment