mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 23:58:31 -06:00
starting lecture UI
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import React from "react";
|
||||
import EditLecture from "./EditLecture";
|
||||
|
||||
export default function page({
|
||||
params: { lectureDay },
|
||||
}: {
|
||||
params: { lectureDay: string };
|
||||
}) {
|
||||
const decodedLectureDay = decodeURIComponent(lectureDay);
|
||||
console.log(decodedLectureDay);
|
||||
return <EditLecture lectureDay={decodedLectureDay} />;
|
||||
}
|
||||
Reference in New Issue
Block a user