-
-
- 출제자
- {/* TODO: 추후 상세 유저 페이지 라우팅 경로로 변경하기 */}
-
- {quiz?.users?.name}
-
-
+
+ 출제자
+ {/* TODO: 추후 상세 유저 페이지 라우팅 경로로 변경하기 */}
+
+ {quiz?.users?.name}
+
+
-
- 문제
-
- {String(children).replace(/\n$/, '')}
-
- ) : (
-
- {children}
-
- );
- },
- }}
- >
- {quiz?.description}
-
-
+
+ 문제
+
+ {String(children).replace(/\n$/, '')}
+
+ ) : (
+
+ {children}
+
+ );
+ },
+ }}
+ >
+ {quiz?.description}
+
+
-
-
+
);
}
diff --git a/app/quizzes/[id]/questions/page.tsx b/app/quizzes/[id]/questions/page.tsx
new file mode 100644
index 0000000..08ad9ea
--- /dev/null
+++ b/app/quizzes/[id]/questions/page.tsx
@@ -0,0 +1,5 @@
+export default async function Page({ params }: { params: { id: string } }) {
+ const quizId = Number(params.id) ?? 0;
+
+ return