Skip to content

Instantly share code, notes, and snippets.

@tomeraz
Created June 15, 2020 07:17
Show Gist options
  • Save tomeraz/07b163add3e197a242405a193227a296 to your computer and use it in GitHub Desktop.
Save tomeraz/07b163add3e197a242405a193227a296 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const pedestrianStates = {
initial: 'walk',
states: {
walk: {
on: {
PED_TIMER: 'wait'
}
},
wait: {
on: {
PED_TIMER: 'stop'
}
},
stop: {}
}
};
const lightMachine = Machine({
id: 'light',
initial: 'green',
states: {
green: {
on: {
TIMER: 'yellow'
}
},
yellow: {
on: {
TIMER: 'red'
}
},
red: {
on: {
TIMER: 'green'
},
...pedestrianStates
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment