Skip to content

Instantly share code, notes, and snippets.

@Platekun
Created July 16, 2019 01:11
Show Gist options
  • Save Platekun/f559da12035a7d70bc3d1675d3a1056f to your computer and use it in GitHub Desktop.
Save Platekun/f559da12035a7d70bc3d1675d3a1056f to your computer and use it in GitHub Desktop.
Generated by [XState Viz](https://xstate.js.org/viz)
// Available variables:
// Machine (machine factory function)
// assign (action)
// XState (all XState exports)
const fetchMachine = Machine({
id: 'Traffic Light',
initial: 'Red',
states: {
Red: {
on: {
TIMER: 'Yellow'
}
},
Yellow: {
on: {
TIMER: 'Green'
}
},
Green: {
on: {
TIMER: 'Red'
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment