Add missing X in starter Square component (#5445)

This change adds missing "X" character for starter Square component showcase in "Overview" section
This commit is contained in:
Uladzislau Hramyka
2023-01-07 22:57:29 +03:00
committed by GitHub
parent 05bf01d0ae
commit b4ae933648

View File

@@ -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>;
}
```