Skip to content

Instantly share code, notes, and snippets.

@anish-techpro
anish-techpro / machine.js
Last active March 3, 2020 10:34
Generated by XState Viz: https://xstate.js.org/viz
const helpnowAppointmentStatusMachine = Machine({
id: 'helpnowAppointmentStatus',
initial: 'unassigned-1',
context: {
retries: 0
},
states: {
"unassigned-1": {
on: {
ASSIGN_TECHNICIAN: 'assigned-2'