Skip to content

Instantly share code, notes, and snippets.

@ekafyi
Last active July 21, 2020 18:27
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 ekafyi/47a68ddc98fd3472f0641cc6bcad3b9d to your computer and use it in GitHub Desktop.
Save ekafyi/47a68ddc98fd3472f0641cc6bcad3b9d to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const handWashMachine2b = Machine({
id: 'handwash',
initial: 'unwashed',
states: {
unwashed: {
on: {
START_WASH: 'washing'
}
},
washing: {
on: {
STOP_WASH: 'unwashed'
},
after: {
20000: 'washed'
}
},
washed: {
type: 'final'
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment