Skip to content

Instantly share code, notes, and snippets.

@ynifamily3
Created May 24, 2021 08:47
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 ynifamily3/859afac0feac36b4fffb862724eaa452 to your computer and use it in GitHub Desktop.
Save ynifamily3/859afac0feac36b4fffb862724eaa452 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
// - XState (all XState exports)
const stoplightMachine = Machine(
{
id: 'stoplight',
initial: 'red',
states: {
green: {
// 'on' s이 사용되지 않은 것을 주목
after: {
GREEN_TIMER: 'yellow',
},
},
yellow: {
after: {
YELLO_TIMER: 'red',
},
},
red: {
after: {
RED_TIMER: 'green',
},
},
},
},
{
delays: {
GREEN_TIMER: 3000,
YELLO_TIMER: 1000,
RED_TIMER: 4000,
},
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment