Skip to content

Instantly share code, notes, and snippets.

@Jpadilla1
Created September 3, 2019 17:23
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 Jpadilla1/ef776cb8e9ef3a114be56032605a7b3e to your computer and use it in GitHub Desktop.
Save Jpadilla1/ef776cb8e9ef3a114be56032605a7b3e to your computer and use it in GitHub Desktop.
Feedback Machine
const feedbackMachine = Machine({
id: "feedback",
initial: "idle",
states: {
idle: {
on: {
good: "thanks",
bad: "tellUsWhy"
}
},
thanks: {
type: "final"
},
tellUsWhy: {
on: {
submit: "thanks"
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment