Skip to content

Instantly share code, notes, and snippets.

@maddyonline
Last active November 12, 2019 02:54
Show Gist options
  • Save maddyonline/1b299017f413da4e5628a016b4b60fbb to your computer and use it in GitHub Desktop.
Save maddyonline/1b299017f413da4e5628a016b4b60fbb to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
// - XState (all XState exports)
const navMachine = Machine({
id: 'nav',
initial: 'idle',
context: {
retries: 0
},
states: {
idle: {
on: {
START: 'start'
}
},
start: {
on: {
BEGIN: 'exercise'
},
},
exercise: {
on: {
PAUSE: 'paused',
FINISH: 'scores'
}
},
paused: {
on: {
RESUME: 'exercise',
FINISH: 'scores'
}
},
scores: {
type: 'final'
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment