Skip to content

Instantly share code, notes, and snippets.

@armorpreston
Last active November 1, 2019 19:49
Show Gist options
  • Save armorpreston/c17a23a618c71ec227f1ac118a46892a to your computer and use it in GitHub Desktop.
Save armorpreston/c17a23a618c71ec227f1ac118a46892a to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const fetchMachine = Machine({
id: 'balance',
initial: 'loading',
states: {
loading: {
on: {
RESOLVE: 'showList',
REJECT: 'dataFailure'
}
},
showList: {
on: {
SELECT: 'showSingle'
}
},
showSingle: {
on: {
BACK: 'showList',
SPEND: {}
}
},
dataFailure: {
on: {
RETRY: 'loading'
}
},
},
on: {
COMPLETE_TASK: {}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment