Skip to content

Instantly share code, notes, and snippets.

@LevelbossMike
Created September 14, 2020 14:43
Show Gist options
  • Select an option

  • Save LevelbossMike/df8d50465eaf535fbfed79967d64cd59 to your computer and use it in GitHub Desktop.

Select an option

Save LevelbossMike/df8d50465eaf535fbfed79967d64cd59 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 selectMachine = Machine({
id: 'select',
initial: 'closed',
context: {
retries: 0
},
states: {
closed: {
on: {
TOGGLE: 'open'
}
},
open: {
on: {
TOGGLE: 'closed',
CLOSE: 'closed'
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment