copy folder to complete hw

This commit is contained in:
2026-04-03 00:29:40 +10:00
parent 5aa559e99f
commit abe69ecefc
18 changed files with 3130 additions and 0 deletions

16
site/src/App.jsx Normal file
View File

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