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 b524083 commit 19e455dCopy full SHA for 19e455d
app/quizzes/surah/86/client.tsx
@@ -0,0 +1,7 @@
1
+"use client";
2
+import { atTariqQuizData } from "@/data/surah-86-quiz-data";
3
+import dynamic from "next/dynamic";
4
+const SurahQuiz = dynamic(() => import("@/components/surah-quiz"), { ssr: false });
5
+export default function AtTariqQuiz() {
6
+ return <SurahQuiz quizData={atTariqQuizData} />;
7
+}
0 commit comments