Skip to content

Commit 7f24fc5

Browse files
committed
have improved the css
1 parent a41426e commit 7f24fc5

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

tic-tac-toe/src/App.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,23 +42,17 @@ function App() {
4242

4343
if (tempX.length >= 3) {
4444
let didWin = checkWins(tempX);
45-
console.log("didWin", didWin);
4645
}
4746
} else {
4847
let tempO = [...oInput, i];
4948
setOInput(tempO);
5049

5150
if (tempO.length >= 3) {
5251
let didWin = checkWins(tempO);
53-
console.log("didWin", didWin);
5452
}
5553
}
5654
};
5755

58-
console.log("xInput", xInput);
59-
console.log("oInput", oInput);
60-
console.log("xTurn", xTurn);
61-
6256
const renderBoardValue = (i) => {
6357
if (xInput.includes(i)) {
6458
return "X";

0 commit comments

Comments
 (0)