Skip to content

Instantly share code, notes, and snippets.

@MaelFr
Created May 19, 2020 13:12
Show Gist options
  • Select an option

  • Save MaelFr/cfde75e8c023e0f5345aec12f8e291df to your computer and use it in GitHub Desktop.

Select an option

Save MaelFr/cfde75e8c023e0f5345aec12f8e291df to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const fetchMachine = Machine({
id: 'alarmClock',
initial: 'idle',
states: {
idle: {
on: {
ALARM: 'alarming'
}
},
alarming: {
on: {
STOP: 'idle'
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment