Last active
November 14, 2019 00:47
-
-
Save MoonTahoe/19da151a3d98de389bf3b00a0bf0f3e3 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 tahoeTravelMachine = Machine({ | |
id: 'tahoe-travel', | |
initial: 'walking', | |
states: { | |
walking: { | |
on: { | |
THUMBS_UP: 'hitchhiking', | |
ARRIVE: 'arrived' | |
} | |
}, | |
hitchhiking: { | |
on: { | |
PICKED_UP: 'riding', | |
PASSED_BY: 'disappointed' | |
} | |
}, | |
disappointed: { | |
on: { | |
WALK: 'walking', | |
THUMBS_UP: 'hitchhiking' | |
} | |
}, | |
riding: { | |
on: { | |
CREEPED_OUT: 'disappointed', | |
ARRIVED: 'arrived' | |
} | |
}, | |
arrived: { | |
type: 'final' | |
} | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment