adding canvas services

This commit is contained in:
2024-09-17 17:04:54 -06:00
parent 44330b85e9
commit f0f987764c
7 changed files with 319 additions and 3 deletions

View File

@@ -27,7 +27,7 @@ export default function CourseCalendar() {
className="
h-full
overflow-y-scroll
border-4
border-4
border-slate-600
rounded-xl
bg-slate-950

View File

@@ -13,7 +13,7 @@ export default async function CoursePage({}: {}) {
<div className="h-full flex flex-col">
<div className="flex flex-row min-h-0">
<DraggingContextProvider>
<div className="flex-1 min-h-0">
<div className="flex-1 min-h-0 flex flex-col">
<CourseNavigation />
<CourseCalendar />
</div>