Skip to content

Instantly share code, notes, and snippets.

@v1valasvegan
Last active December 31, 2021 10:12
Show Gist options
  • Save v1valasvegan/ce99cd05f3a279f9127bf2c173efbf32 to your computer and use it in GitHub Desktop.
Save v1valasvegan/ce99cd05f3a279f9127bf2c173efbf32 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const panelsMachine = Machine({
id: 'unassignedToursMachine',
initial: 'selectingTours',
states: {
selectingTours: {
on: {
SELECT_TOUR: 'selectingShipments',
},
},
selectingShipments: {
on: {
SELECT_SHIPMENT: 'confirmingShipmentSelection',
CLOSE: 'selectingTours',
},
},
confirmingShipmentSelection: {
on: {
CONFIRM: 'selectingShipments',
CLOSE: 'selectingShipments',
},
},
},
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment