Skip to content

Instantly share code, notes, and snippets.

@craftoid
Created October 19, 2020 19:01
Show Gist options
  • Save craftoid/2222c693641cd05ef08fcbc99503b824 to your computer and use it in GitHub Desktop.
Save craftoid/2222c693641cd05ef08fcbc99503b824 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const onetwothree = Machine({
id: 'modulo three',
initial: 'one',
states: {
one: {
on: {
inc: 'two',
dec: 'three'
}
},
two: {
on: {
inc: 'three',
dec: 'one'
}
},
three: {
on: {
inc: 'one',
dec: 'two'
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment