Skip to content

Instantly share code, notes, and snippets.

@CAWeissen
Last active February 6, 2020 15:33
Show Gist options
  • Save CAWeissen/afb55b8fc1c023d4d0c61761b73de04b to your computer and use it in GitHub Desktop.
Save CAWeissen/afb55b8fc1c023d4d0c61761b73de04b 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: {
after: {
1500: 'yellow'
},
on: {
CHANGE: 'yellow'
}
},
yellow: {
after: {
500: 'red'
},
on: {
CHANGE: 'red'
}
},
red: {
after: {
2000: 'green'
},
on: {
CHANGE: 'green'
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment