Skip to content

Instantly share code, notes, and snippets.

@BobToninho
Created March 13, 2021 23:14
Show Gist options
  • Save BobToninho/4dcd58b002e413cd6f5a7ffdd7ea6e59 to your computer and use it in GitHub Desktop.
Save BobToninho/4dcd58b002e413cd6f5a7ffdd7ea6e59 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: 'showingForm',
context: {},
states: {
showingForm: {
},
sendingLogin: {},
loginSuccessful: {},
errorReceived: {}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment