mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 15:48:32 -06:00
scrolling items
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
"use client";
|
"use client";
|
||||||
import { useModuleNamesQuery } from "@/hooks/localCourse/localCourseModuleHooks";
|
import { useModuleNamesQuery } from "@/hooks/localCourse/localCourseModuleHooks";
|
||||||
import ExpandableModule from "./ExpandableModule";
|
import ExpandableModule from "./ExpandableModule";
|
||||||
import CreateModule from "./CreateModule";
|
import CreateModule from "./CreateModule";
|
||||||
|
|
||||||
@@ -11,6 +11,10 @@ export default function ModuleList() {
|
|||||||
{moduleNames.map((m) => (
|
{moduleNames.map((m) => (
|
||||||
<ExpandableModule key={m} moduleName={m} />
|
<ExpandableModule key={m} moduleName={m} />
|
||||||
))}
|
))}
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ export default async function CoursePage({}: {}) {
|
|||||||
<CourseNavigation />
|
<CourseNavigation />
|
||||||
<CourseCalendar />
|
<CourseCalendar />
|
||||||
</div>
|
</div>
|
||||||
<div className="w-96 p-3">
|
<div className="w-96 p-3 h-full overflow-y-auto">
|
||||||
<CourseSettingsLink />
|
<CourseSettingsLink />
|
||||||
<ModuleList />
|
<ModuleList />
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user