We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84573de commit 59bc182Copy full SHA for 59bc182
app/quizzes/surah/87/client.tsx
@@ -0,0 +1,7 @@
1
+"use client";
2
+import { alAlaQuizData } from "@/data/surah-87-quiz-data";
3
+import dynamic from "next/dynamic";
4
+const SurahQuiz = dynamic(() => import("@/components/surah-quiz"), { ssr: false });
5
+export default function AlAlaQuiz() {
6
+ return <SurahQuiz quizData={alAlaQuizData} />;
7
+}
0 commit comments