Skip to content

Instantly share code, notes, and snippets.

@chukinas
Created April 22, 2020 02:54
Show Gist options
  • Save chukinas/b8a340ec2daa07dd1d75c8248e275a86 to your computer and use it in GitHub Desktop.
Save chukinas/b8a340ec2daa07dd1d75c8248e275a86 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const pedestrianStates = {
key: 'peds',
initial: 'walk',
states: {
walk: {
on: {
PED_COUNTDOWN: 'wait'
}
},
wait: {
on: {
PED_COUNTDOWN: 'stop'
}
},
stop: {},
blinking: {}
}
};
// const lightMachine = Machine({
// key: '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