Footer added (fix CSS)

This commit is contained in:
Harshitha Shetty
2025-03-30 19:30:09 +05:30
parent 9fda8ba883
commit 1b6abd6efe
12 changed files with 100 additions and 0 deletions

View File

@@ -4,6 +4,7 @@ import "./CourseTable.css";
import { fetchCourses, fetchAppointments } from "../api";
import FilterPage from "./FilterPage";
import Footer from "./Footer";
const CourseTable = () => {
const { state } = useLocation();
@@ -77,6 +78,7 @@ const CourseTable = () => {
)}
</tbody>
</table>
<Footer/>
</>
);
};