Skip to content

Instantly share code, notes, and snippets.

@apcj
Created December 5, 2019 21:57
Show Gist options
  • Save apcj/0e64ec3108c04e514e3f09aaf3f7e89a to your computer and use it in GitHub Desktop.
Save apcj/0e64ec3108c04e514e3f09aaf3f7e89a 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 fetchMachine = Machine({
id: 'fetch',
initial: 'idle',
context: {
retries: 0
},
states: {
idle: {
on: {
MOUSE_OVER: 'hover'
}
},
hover: {
on: {
MOUSE_DOWN: 'active',
MOUSE_OUT: 'idle'
}
},
active: {
on: {
MOUSE_UP: 'idle',
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment