Skip to content

Instantly share code, notes, and snippets.

@stefanovualto
Last active December 2, 2020 16:04
Show Gist options
  • Select an option

  • Save stefanovualto/93ef1681c65c9090ba558f89245aa37f to your computer and use it in GitHub Desktop.

Select an option

Save stefanovualto/93ef1681c65c9090ba558f89245aa37f 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: 'displayed',
states: {
hidden: {
on: {
MOUSENTER: 'displayed',
TOUCHSTART: 'displayed'
}
},
displayed: {
on: {
MOUSELEAVE: 'hidden',
AFTERNTIME: 'hidden'
}
},
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment