Skip to content
This repository has been archived by the owner on Apr 21, 2023. It is now read-only.

Commit

Permalink
Add missing X in starter Square component (#5445)
Browse files Browse the repository at this point in the history
This change adds missing "X" character for starter Square component showcase in "Overview" section
  • Loading branch information
SecondThundeR authored Jan 7, 2023
1 parent 05bf01d commit b4ae933
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion beta/src/content/learn/tutorial-tic-tac-toe.md
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ The `App.js` file should be selected in the _Files_ section. The contents of tha

```jsx
export default function Square() {
return <button className="square"></button>;
return <button className="square">X</button>;
}
```

Expand Down

0 comments on commit b4ae933

Please sign in to comment.