Created
August 13, 2020 13:27
-
-
Save joshpitzalis/265bbaabbdf362a3a3d5995d5ba4749d to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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