Created
June 29, 2021 03:40
-
-
Save calvinchengx/52634e82eab3fc311fc2156aea694883 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 feedbackMachine = Machine({ | |
id: 'feedback', | |
initial: 'question', | |
states: { | |
question: { | |
on: { | |
CLICK_GOOD: 'thanks', | |
CLICK_BAD: 'form', | |
CLOSE: 'closed' | |
} | |
}, | |
form: { | |
on: { | |
SUBMIT: 'thanks', | |
CLOSE: 'closed' | |
} | |
}, | |
thanks: { | |
on: { | |
CLOSE: 'closed' | |
} | |
}, | |
closed: { | |
type: 'final' | |
} | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment