Skip to content

Instantly share code, notes, and snippets.

@fev4
Created October 9, 2021 02:56
Show Gist options
  • Save fev4/66ed58c21a76c04bc85d0c41453aa0d7 to your computer and use it in GitHub Desktop.
Save fev4/66ed58c21a76c04bc85d0c41453aa0d7 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
// - XState (all XState exports)
const createAccountMachine = Machine({
id: 'createAccountMachine',
initial: 'dataEntry',
states: {
dataEntry: {},
validateField: {},
validateForm: {},
nameErr: {},
totalAmountErr: {},
rateErr: {},
awaitingResponse: {}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment