Skip to content

Instantly share code, notes, and snippets.

@davidkpiano
Created June 11, 2020 02:17
Show Gist options
  • Save davidkpiano/12b098362137d7b8094cec3c18c44038 to your computer and use it in GitHub Desktop.
Save davidkpiano/12b098362137d7b8094cec3c18c44038 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
Machine({
initial: 'playing',
context: {
plays: 0
},
states: {
playing: {
on: {
'': {
cond: (context) => context.plays >= 3,
target: 'endGame',
}
},
initial: 'x',
states: {
x: {
on: {
NEXT: {
actions: assign({
plays: (context) => context.plays + 1
}),
target: 'o'
}
}
},
o: {
on: {
NEXT: 'x'
}
}
}
},
endGame: {}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment