task done

This commit is contained in:
=
2026-04-10 14:33:23 +10:00
parent 838fa29509
commit 4f11081420
6 changed files with 61 additions and 61 deletions

View File

@@ -3,7 +3,7 @@ import Table from './components/Table.jsx';
import buildings from './data.js';
import './CSS/App.css'
import Chart from './components/Chart.jsx'
import Task from './Task.jsx'
import Task from './components/Task.jsx'
function App() {
@@ -14,7 +14,7 @@ function App() {
<h3>Самые высокие здания и сооружения</h3>
<Chart data={ filteredData } />
<Table data={ buildings } setFilteredDataCallback={setFilteredData} amountRows="15" />
{/* <Task/> */}
<Task interval="1000"/>
</div>
)
}