copy folder to complete hw
This commit is contained in:
16
site/src/App.jsx
Normal file
16
site/src/App.jsx
Normal 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
|
||||
Reference in New Issue
Block a user