Skip to content

Instantly share code, notes, and snippets.

@danielsdesk
Created December 12, 2019 04:58
Show Gist options
  • Save danielsdesk/fd025fe075faf4c8ffdb296d24dde5e3 to your computer and use it in GitHub Desktop.
Save danielsdesk/fd025fe075faf4c8ffdb296d24dde5e3 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: 'force',
initial: 'light',
context: {},
states: {
light: {
on: {
CORRUPT: 'dark'
}
},
dark: {
on: {
REDEEM: 'light'
}
}
}},
{}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment