fixing date formatting to month day year

This commit is contained in:
2024-08-27 19:59:26 -06:00
parent 4e412fd6bf
commit 27349af5b9
21 changed files with 284 additions and 212 deletions

View File

@@ -0,0 +1,8 @@
"use client";
import { useCourseContext } from "./context/courseContext";
export default function CourseSettings() {
const context = useCourseContext();
return <div>{context.localCourse.settings.name}</div>;
}