Skip to content

Instantly share code, notes, and snippets.

@kappuccino
Created May 14, 2020 06:23
Show Gist options
  • Save kappuccino/43bb0d228f1a366e8dc312961775d428 to your computer and use it in GitHub Desktop.
Save kappuccino/43bb0d228f1a366e8dc312961775d428 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const idleMachine = Machine({
id: 'idle',
initial: 'idle',
states: {
idle: {
entry: 'logEntry',
exit: 'logExit'
}
},
on:{
DO_NOTHING: '.idle'
}
}, {
actions:{
logEntry: () => console.log('Entered'),
logExit: () => console.log('Exited')
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment