import type { JSX } from "react" import { getTranslations } from "next-intl/server" import { ExamRichForm } from "@/modules/exams/components/exam-rich-form" export const dynamic = "force-dynamic" export default async function NewExamPage(): Promise { const t = await getTranslations("examHomework") return (

{t("exam.richEditor.title")}

{t("exam.richEditor.description")}

) }