Skip to content

Instantly share code, notes, and snippets.

@mdsaleemj
Created August 27, 2021 04:37
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 mdsaleemj/4499acb37e513c2a6d0bc2428548f902 to your computer and use it in GitHub Desktop.
Save mdsaleemj/4499acb37e513c2a6d0bc2428548f902 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const tahoeTravelMachine = Machine({
id: "tahoe-travel",
initial: "login",
states :{
login : {
on :{
LOGIN : "logged_in"
}
},
logged_in :{
type : "final"
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment