Skip to content

Instantly share code, notes, and snippets.

@bwaidelich
Created April 9, 2021 08:20
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 bwaidelich/c76bf78950a140a3a651dd28bad69aab to your computer and use it in GitHub Desktop.
Save bwaidelich/c76bf78950a140a3a651dd28bad69aab to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const todoMachine = Machine({
id: "todo",
initial: "reading",
context: {
completed: false
},
states: {
reading: {
on: {
SET_COMPLETED: {
actions: [assign({ completed: true }), "commit"]
},
}
},
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment