Skip to content

Instantly share code, notes, and snippets.

@joshpitzalis
Created August 13, 2020 13:27
Show Gist options
  • Save joshpitzalis/265bbaabbdf362a3a3d5995d5ba4749d to your computer and use it in GitHub Desktop.
Save joshpitzalis/265bbaabbdf362a3a3d5995d5ba4749d to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const searchComponentMachine = Machine({
id: 'searchComponents',
initial: 'newResult',
states: {
newResult:{
on:{
SELECTED: 'newResult',
}},
bookmarked:{
on:{
SELECTED: 'bookmarked',
}
},
selected:{
on:{
UNSELECTED: 'newResult',
}
},
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment