Skip to content

Instantly share code, notes, and snippets.

@rhodler
Created July 14, 2020 17:46
Show Gist options
  • Save rhodler/fad80845ddaf2e8238e3f9f96ae89f07 to your computer and use it in GitHub Desktop.
Save rhodler/fad80845ddaf2e8238e3f9f96ae89f07 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const promiseMachine = Machine({
id: 'promise',
initial: 'pending',
states: {
pending: {
on: {
RESOLVE: 'resolved',
REJECT: 'rejected'
}
},
resolved: {
type: 'final'
},
rejected: {
type: 'final'
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment