Skip to content

Instantly share code, notes, and snippets.

@etoxin
Created October 28, 2019 22:47
Show Gist options
  • Save etoxin/047552aaada065637811c88b104b1fdb to your computer and use it in GitHub Desktop.
Save etoxin/047552aaada065637811c88b104b1fdb 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 fetchMachine = Machine({
id: 'ActionCards',
initial: 'SummaryCard',
context: {
retries: 0
},
states: {
SummaryCard: {
on: {
OPTIONS: 'Draft'
}
},
Alert: {
on: {
CLOSE: 'SummaryCard',
}
},
Draft: {
on: {
SEND: 'Alert',
RESEND: 'Alert',
DELETE: 'Alert',
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment