Skip to content

Instantly share code, notes, and snippets.

@Winwardo
Last active March 7, 2020 16:32
Show Gist options
  • Save Winwardo/8309eb23557ad9e4547c06d4467eed46 to your computer and use it in GitHub Desktop.
Save Winwardo/8309eb23557ad9e4547c06d4467eed46 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const orderPage = Machine({
id: "order",
initial: "base",
context: {
refund: null,
},
states: {
base: {
on:{
REFUND: 'refund',
RESEND_CONFIRMATION_EMAIL:'resendConfirmationEmail',
RESEND_REFUND_EMAIL:'resendRefundEmail',
}
},
refund: {
on: {
CLOSE: 'base'
}
},
resendConfirmationEmail: {
on: {
CLOSE: 'base'
}},
resendRefundEmail: {
on: {
CLOSE: 'base'
}},
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment