This commit is contained in:
=
2026-04-03 14:16:13 +10:00
parent b096ac7aa3
commit f76757311f
3 changed files with 17 additions and 3 deletions

View File

@@ -2,6 +2,7 @@ import { useState } from 'react'
import Table from './components/Table.jsx';
import buildings from './data.js';
import './CSS/App.css'
import Task from './Task.jsx'
function App() {
const [count, setCount] = useState(0)
@@ -9,6 +10,7 @@ function App() {
<div className="App">
<h3>Самые высокие здания и сооружения</h3>
<Table data={ buildings } amountRows="15" />
<Task/>
</div>
)
}