term dropdown populating

This commit is contained in:
2024-09-11 09:21:05 -06:00
parent dd983982d8
commit 72dcb2f54b
13 changed files with 266 additions and 32 deletions

View File

@@ -1,9 +1,16 @@
import AddNewCourse from "./AddNewCourse";
import CourseList from "./CourseList";
export default async function Home() {
return (
<main className="min-h-screen">
<CourseList />
<main className="min-h-screen flex justify-center">
<div>
<CourseList />
<br />
<br />
<AddNewCourse />
</div>
</main>
);
}