Skip to content

Instantly share code, notes, and snippets.

@tmlangley
Created April 15, 2020 18:51
Show Gist options
  • Save tmlangley/4acaa0be10abaaac42cefab5a2ab7f66 to your computer and use it in GitHub Desktop.
Save tmlangley/4acaa0be10abaaac42cefab5a2ab7f66 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const ResultsMachine = Machine({
id: 'resultsMachine',
initial: 'defaultContent',
states: {
defaultContent: {
on: {
REFINING_FILTERS: 'loading'
}
},
loading: {
after: {
1500: 'success'
}
},
noResults: {},
error: {},
success: {
on: {
RESULTS_LOADED: {
}
}
}
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment