Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 5, 2020 22:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/01b766186bb16768074183a8e6ce7288 to your computer and use it in GitHub Desktop.
Save parzibyte/01b766186bb16768074183a8e6ce7288 to your computer and use it in GitHub Desktop.
cellImage(cell) {
if (cell === this.PLAYER_1) {
return "img/player1.png";
} else if (cell === this.PLAYER_2) {
return "img/player2.png";
} else {
return "img/empty.png"
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment