Skip to content

Instantly share code, notes, and snippets.

@headwinds
Created March 20, 2020 02:41
Show Gist options
  • Save headwinds/2d2e6918475f72086b9b33f6393482a9 to your computer and use it in GitHub Desktop.
Save headwinds/2d2e6918475f72086b9b33f6393482a9 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({
initial: 'Off',
context: {
selected: false
},
states: {
Off: {
on: { Toggle: { target: 'On', actions: ['handleOnSelected'] } }
},
On: {
on: {
Toggle: { target: 'Off', actions: [ 'handleOnUnSelected'] }
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment