2023-07-31 13:16:42 +02:00
|
|
|
import './App.css';
|
|
|
|
|
|
|
|
function App() {
|
|
|
|
return (
|
2023-07-31 13:35:46 +02:00
|
|
|
<>
|
2023-07-31 13:44:31 +02:00
|
|
|
<div className="board-row">
|
|
|
|
<button className="square">1</button>
|
|
|
|
<button className="square">2</button>
|
|
|
|
<button className="square">3</button>
|
|
|
|
</div>
|
|
|
|
<div className="board-row">
|
|
|
|
<button className="square">4</button>
|
|
|
|
<button className="square">5</button>
|
|
|
|
<button className="square">6</button>
|
|
|
|
</div>
|
|
|
|
<div className="board-row">
|
|
|
|
<button className="square">7</button>
|
|
|
|
<button className="square">8</button>
|
|
|
|
<button className="square">9</button>
|
|
|
|
</div>
|
2023-07-31 13:35:46 +02:00
|
|
|
</>
|
2023-07-31 13:16:42 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default App;
|