Skip to content

Instantly share code, notes, and snippets.

@mm-parthy
Created August 6, 2020 11:54
Show Gist options
  • Save mm-parthy/0fb0a8845777f79882422f682818d32f to your computer and use it in GitHub Desktop.
Save mm-parthy/0fb0a8845777f79882422f682818d32f to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const feedbackMachine = Machine({
id: 'feedback',
initial: 'question',
states: {
question: {
on: {
CLICK_GOOD: 'thanks',
CLICK_BAD: 'form',
CLOSE: 'closed',
ESC: 'closed'
}
},
form: {
on: {
SUBMIT: 'thanks',
CLOSE: 'closed',
ESC: 'closed'
}
},
thanks: {
on: {
CLOSE: 'closed',
ESC: 'closed'
}
},
closed: {
type: 'final'
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment