Skip to content

Instantly share code, notes, and snippets.

@dorelljames
Created August 26, 2022 10:23
Embed
What would you like to do?
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