Skip to content

Instantly share code, notes, and snippets.

@ifyour
Created April 4, 2020 04:25
Show Gist options
  • Save ifyour/ce153e2c4ce32e873ea6631419929cf9 to your computer and use it in GitHub Desktop.
Save ifyour/ce153e2c4ce32e873ea6631419929cf9 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const stateMachine = Machine({
initial: 'idle',
states: {
idle: {
on: {
SUBMIT: 'loading',
},
},
loading: {
on: {
PAYMENT_SUCCESS: 'success',
PAYMENT_FAILED: 'error',
}
},
error: {
on: {
SUBMIT: 'loading',
},
},
success: {
type: 'final',
},
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment