Skip to content

Instantly share code, notes, and snippets.

@davidkpiano
Created November 24, 2019 13:24
Show Gist options
  • Save davidkpiano/be7a2f5b99a2f131a4d75027d90200da to your computer and use it in GitHub Desktop.
Save davidkpiano/be7a2f5b99a2f131a4d75027d90200da to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
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