Skip to content

Instantly share code, notes, and snippets.

@chrisjarvis1
Last active February 12, 2021 15:19
Show Gist options
  • Save chrisjarvis1/7c88b96cdc22fca9c1d5e0c10165372a to your computer and use it in GitHub Desktop.
Save chrisjarvis1/7c88b96cdc22fca9c1d5e0c10165372a to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const searchMachine = Machine({
id: "search",
context: {
result: [],
},
initial: "idle",
states: {
idle: {},
searching: {},
loaded: {},
failure: {}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment