Skip to content

Instantly share code, notes, and snippets.

@dorelljames
Created August 26, 2022 10:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dorelljames/2e743d789b57ab63a50d71f481b2757e to your computer and use it in GitHub Desktop.
Save dorelljames/2e743d789b57ab63a50d71f481b2757e 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 fetchGalleries = Promise.resolve(() => [1,2,3])
const appMachine = Machine({
id: 'app',
initial: 'idle',
type: 'parallel',
context: {
galleries: [],
},
states: {
background: {
type: 'parallel',
states: {
'fetching_galleries': {
entry: 'fetchGalleries'
},
'fetching_searchKey': {},
}
},
idle: {},
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment