Skip to content

Instantly share code, notes, and snippets.

@40thieves
Last active August 4, 2021 13:10
Show Gist options
  • Save 40thieves/30b4935de5337ecf4f750b6d69b97770 to your computer and use it in GitHub Desktop.
Save 40thieves/30b4935de5337ecf4f750b6d69b97770 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const sleepMachine = Machine({
initial: 'awake',
states: {
awake: {
on: {
GO_TO_SLEEP: 'asleep'
}
},
asleep: {
on: {
WAKE_UP: 'awake'
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment