Skip to content

Instantly share code, notes, and snippets.

@idpokute
Last active October 26, 2022 20:32
Show Gist options
  • Save idpokute/78aebbb3a9b879f4405ae84a1aec911d to your computer and use it in GitHub Desktop.
Save idpokute/78aebbb3a9b879f4405ae84a1aec911d 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'
},
strict: true
},
{
actions: {
logEntry: (context, event) => {
console.log("enter", event.location);
},
logExit: (context, event) => {
console.log("exit ", event.location);
}
}
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment