moving v2 to top level

This commit is contained in:
2024-12-17 09:19:21 -07:00
parent 5f0b3554dc
commit 576ee02afb
468 changed files with 79 additions and 15430 deletions

View File

@@ -0,0 +1,22 @@
"use client";
import { useModuleNamesQuery } from "@/hooks/localCourse/localCourseModuleHooks";
import ExpandableModule from "./ExpandableModule";
import CreateModule from "./CreateModule";
export default function ModuleList() {
const [moduleNames] = useModuleNamesQuery();
return (
<div>
{moduleNames.map((m) => (
<ExpandableModule key={m} moduleName={m} />
))}
<div className="flex flex-col justify-center">
<CreateModule />
</div>
<br />
<br />
<br />
<br />
</div>
);
}