Created
April 4, 2020 04:25
-
-
Save ifyour/ce153e2c4ce32e873ea6631419929cf9 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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