Skip to content

Instantly share code, notes, and snippets.

@markgarrigan
Created January 15, 2019 04:53
Show Gist options
  • Save markgarrigan/a2f44f2a0b17f3b684a184204871008c to your computer and use it in GitHub Desktop.
Save markgarrigan/a2f44f2a0b17f3b684a184204871008c to your computer and use it in GitHub Desktop.
The board component for riot tic tac toe.
<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