Skip to content

Instantly share code, notes, and snippets.

View dynamike2010's full-sized avatar
🎯
Focusing

dynamike2010

🎯
Focusing
View GitHub Profile
@dynamike2010
dynamike2010 / machine.js
Last active May 5, 2021 13:48
Generated by XState Viz: https://xstate.js.org/viz
const projectFlow = Machine({
id: 'project',
initial: 'open',
states: {
'open': {
on: {
'check out': 'open - checked out',
'publish': 'open',
'complete': 'completed',
}
@dynamike2010
dynamike2010 / machine.js
Last active May 5, 2021 13:52
Generated by XState Viz: https://xstate.js.org/viz
const modelFlow = Machine({
id: 'model',
initial: 'inactive',
states: {
'inactive': {
on: {
'check out': 'inactive - checked out',
'publish': 'active',
}
},