Skip to content

Instantly share code, notes, and snippets.

@CAWeissen
Created February 17, 2020 18:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CAWeissen/4869d6310a3597aecc4fb5b348999e3d to your computer and use it in GitHub Desktop.
Save CAWeissen/4869d6310a3597aecc4fb5b348999e3d to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const slidesMachine = Machine({
id: 'slides',
initial: 'dashboard',
states: {
dashboard: {
on: {
CREATE: 'create',
EDITING: 'editing'
}
},
create: {
on: {
CANCEL: 'dashboard',
SAVE: 'editing'
}
},
editing: {
on: {
BACK: 'dashboard',
PRESENTING: 'presenting'
}
},
presenting: {
on: {
EXIT: 'editing'
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment