Skip to content

Instantly share code, notes, and snippets.

@danReynolds
Last active May 13, 2020 16:47
Show Gist options
  • Save danReynolds/33dcb1fc0c2b9c2c60aae06cf15e8904 to your computer and use it in GitHub Desktop.
Save danReynolds/33dcb1fc0c2b9c2c60aae06cf15e8904 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 eligibilityMachine = Machine({
initial: 'initialized',
states: {
initialized: {
on: {
eligible: 'eligible',
ineligible: 'ineligible'
},
},
eligible: {
on: {
opt_in: 'opted_in',
dismiss: 'dismissed'
}
},
ineligible: {},
dismissed: {},
opted_in: {
on: {
add_FDP_account: 'ineligible'
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment