mirror of
https://github.com/th30d4y/OpenLearnX.git
synced 2026-05-26 19:26:33 +00:00
12 lines
230 B
TypeScript
12 lines
230 B
TypeScript
import { QuizRunner } from "@/components/quiz-runner"
|
|
|
|
interface QuizPageProps {
|
|
params: {
|
|
quizId: string
|
|
}
|
|
}
|
|
|
|
export default function QuizPage({ params }: QuizPageProps) {
|
|
return <QuizRunner quizId={params.quizId} />
|
|
}
|