Skip to content

Instantly share code, notes, and snippets.

@noor-tg
Created October 15, 2020 18:00
Show Gist options
  • Save noor-tg/0e739f0e4288cc5422041fa705e35e6d to your computer and use it in GitHub Desktop.
Save noor-tg/0e739f0e4288cc5422041fa705e35e6d 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: 'toggle',
initial: 'rendered',
states: {
rendered: {
on: {
SWITCH: 'raw'
}
},
raw: {
on: {
SWITCH: "rendered"
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment