Skip to content

Instantly share code, notes, and snippets.

@apfzvd
Last active July 24, 2019 15:31
Show Gist options
  • Select an option

  • Save apfzvd/62afed5d13ee86a957423575423ac7b4 to your computer and use it in GitHub Desktop.

Select an option

Save apfzvd/62afed5d13ee86a957423575423ac7b4 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const fetchMachine = Machine({
initial: 'login',
states: {
login: {
on: {
INSERT_DATA: 'login_success',
FORGOT_PASS: 'forgot_pass'
}
},
login_success: {},
forgot_pass: {
on: {
CONFIRM_MAIL: 'main_sent',
}
},
main_sent: {
on: {
BACK_TO_LOGIN: 'login',
}
},
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment