Skip to content

Instantly share code, notes, and snippets.

@guilherme-teodoro
Created April 15, 2021 17:42
Show Gist options
  • Save guilherme-teodoro/b75f43ab2bc1fc42b5041ea45f38a7ba to your computer and use it in GitHub Desktop.
Save guilherme-teodoro/b75f43ab2bc1fc42b5041ea45f38a7ba to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const machine = Machine({
initial: 'verde',
states: {
verde: {
on: {
PROXIMO: 'amarelo'
}
},
amarelo: {
on: {
PROXIMO: 'vermelho'
}
},
vermelho: {
on: {
RESETAR: 'verde'
}
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment