Skip to content

Instantly share code, notes, and snippets.

@darronj
Created June 17, 2021 19:27
Show Gist options
  • Select an option

  • Save darronj/16339d92d8074d86a2fd61cfeeafec97 to your computer and use it in GitHub Desktop.

Select an option

Save darronj/16339d92d8074d86a2fd61cfeeafec97 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const fetchMachine = Machine({
id: 'fetch',
initial: 'created',
states: {
created: {
on: {
PM_APPROVE: 'approved',
PM_REJECT: 'rejected'
}
},
approved: {
on: {
AD_APPROVAL: 'complete'
}
},
complete: {
type: 'final'
},
rejected: {
type: 'final'
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment