import type { JSX } from "react" import { notFound } from "next/navigation" import { requirePermission } from "@/shared/lib/auth-guard" import { Permissions } from "@/shared/types/permissions" import { getCoursePlanById } from "@/modules/course-plans/data-access" import { CoursePlanDetail } from "@/modules/course-plans/components/course-plan-detail" export const dynamic = "force-dynamic" export default async function TeacherCoursePlanDetailPage({ params, }: { params: Promise<{ id: string }> }): Promise { await requirePermission(Permissions.COURSE_PLAN_READ) const { id } = await params const plan = await getCoursePlanById(id) if (!plan) notFound() return (
) }