Skip to content

Commit

Permalink
Removed semicolon error in App.js file
Browse files Browse the repository at this point in the history
  • Loading branch information
angelannaroby committed Dec 5, 2023
1 parent dc9c687 commit 34e9689
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,11 @@ function Board({ xIsNext, squares, onPlay, bot }) {

function handleClicknameX(e) {
setenteredNameX(xname)
// setXName("");
e.target.disabled = true;
e.target.disabled = true
}
function handleClicknameO(e) {
setEnteredNameO(oname)
// setOName("");
e.target.disabled = true;
e.target.disabled = true
}

function handleClick(i) {
Expand Down

0 comments on commit 34e9689

Please sign in to comment.