Created
November 24, 2019 13:24
-
-
Save davidkpiano/be7a2f5b99a2f131a4d75027d90200da 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 vendingMachine = Machine({ | |
id: 'vending', | |
initial: 0, | |
states: { | |
0: { | |
on: { | |
5: '5', | |
10: '10', | |
20: '20' | |
} | |
}, | |
5: { | |
on: { | |
5: '10', | |
10: '15', | |
20: '25' | |
} | |
}, | |
10: { | |
on: { | |
5: '15', | |
10: '20', | |
20: '25' // keep the change | |
} | |
}, | |
15: { | |
on: { | |
5: '20', | |
10: '25', | |
20: '25' // keep the change | |
} | |
}, | |
20: { | |
on: { | |
5: '25', | |
20: '25', // keep the change | |
20: '25' // keep the change | |
} | |
}, | |
25: { | |
type: 'final' | |
} | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment