Skip to content

Instantly share code, notes, and snippets.

@alizbazar
Created May 5, 2021 08:20
Show Gist options
  • Save alizbazar/4a4bd8113b3d785f0fe19a808e14bfc4 to your computer and use it in GitHub Desktop.
Save alizbazar/4a4bd8113b3d785f0fe19a808e14bfc4 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 loadingIndicatorMachine = Machine({
id: 'loadingIndicator',
initial: 'hidden',
states: {
hidden: {
on: {
DATA: 'hidden',
},
after: {
2000: 'connecting',
},
},
connecting: {
on: {
DATA: 'connected',
}
},
connected: {
after: {
1000: 'hidden',
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment