Created
June 11, 2020 02:17
-
-
Save davidkpiano/12b098362137d7b8094cec3c18c44038 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
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