Created
January 15, 2019 04:53
-
-
Save markgarrigan/a2f44f2a0b17f3b684a184204871008c to your computer and use it in GitHub Desktop.
The board component for riot tic tac toe.
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
<board> | |
<square each={square, i in opts.squares} click={() => parent.opts.click(i)} val={square} no-reorder></square> | |
<style> | |
:scope { | |
display: block; | |
width: calc(36px * 3); | |
} | |
.status { | |
margin-bottom: 10px; | |
} | |
</style> | |
</board> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment