Skip to content

Instantly share code, notes, and snippets.

@tivac
Last active March 11, 2020 16:30
Show Gist options
  • Save tivac/e9ff1e08724c805e03c542199e2d6396 to your computer and use it in GitHub Desktop.
Save tivac/e9ff1e08724c805e03c542199e2d6396 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const fetchMachine = Machine({
id: "delay + state",
type: "parallel",
states: {
status: {
initial: "intros",
states: {
intros: {
after: {
2000: "show",
},
},
show: {
on : {
FETCHED : "done",
},
},
done: {},
},
},
fetching: {
initial: "running",
states: {
running: {
after: {
3000: "done",
},
},
done: {
entry : raise("FETCHED")
},
}
},
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment