Created
February 17, 2020 18:57
-
-
Save CAWeissen/4869d6310a3597aecc4fb5b348999e3d to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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