Created
July 16, 2019 01:11
-
-
Save Platekun/f559da12035a7d70bc3d1675d3a1056f to your computer and use it in GitHub Desktop.
Generated by [XState Viz](https://xstate.js.org/viz)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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