From f76757311f9db1a7390fb83dad9e871f2044a30f Mon Sep 17 00:00:00 2001 From: = <=> Date: Fri, 3 Apr 2026 14:16:13 +1000 Subject: [PATCH] lab fix --- labs/lab4/src/App.jsx | 2 ++ labs/lab4/src/components/Filter.jsx | 9 ++++++++- labs/lab4/src/components/Table.jsx | 9 +++++++-- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/labs/lab4/src/App.jsx b/labs/lab4/src/App.jsx index cf97cd8..4095811 100644 --- a/labs/lab4/src/App.jsx +++ b/labs/lab4/src/App.jsx @@ -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() {