Skip to content

Instantly share code, notes, and snippets.

@MarceloAlves
Last active May 23, 2020 07:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MarceloAlves/85abccfced71c7dd04d2f19757bef6e1 to your computer and use it in GitHub Desktop.
Save MarceloAlves/85abccfced71c7dd04d2f19757bef6e1 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const lightMachine = Machine({
id: 'light',
initial: 'green',
states: {
green: {
on: {
TIMER: 'yellow'
}
},
yellow: {
on: {
TIMER: 'red'
}
},
red: {
on: {
TIMER: 'green'
},
}
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment