11 lines
275 B
TypeScript
11 lines
275 B
TypeScript
import { ExamForm } from "@/modules/exams/components/exam-form"
|
|
|
|
export default function CreateExamPage() {
|
|
return (
|
|
|
|
<div className="flex w-full justify-center items-center min-h-[calc(100vh-160px)] p-8 max-w-[1200px] mx-auto">
|
|
<ExamForm />
|
|
</div>
|
|
)
|
|
}
|