Last active
March 14, 2021 08:13
-
-
Save rahulsivalenka/f4019c6d8c84f86de8e1fc4fd1883dec to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains 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 confirmationDialogStateMachine = Machine({ | |
id: 'confirmationDialog', | |
initial: 'none', | |
states: { | |
none: { | |
on: { | |
OPEN_SAVE_CONFIRMATION: 'saveConfirmation', | |
OPEN_DELETE_CONFIRMATION: 'deleteConfirmation', | |
} | |
}, | |
saveConfirmation: { | |
on: { | |
CLOSE: 'none', | |
} | |
}, | |
deleteConfirmation: { | |
on: { | |
CLOSE: 'none', | |
} | |
} | |
} | |
}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment