+ {options.map((option, i) => (
+
+ {i + 1 + '. ' + option}
+
+ ))}
+
+ );
+};
diff --git a/FE/src/components/QuizView.tsx b/FE/src/components/QuizView.tsx
new file mode 100644
index 0000000..9b9afce
--- /dev/null
+++ b/FE/src/components/QuizView.tsx
@@ -0,0 +1,21 @@
+const sampleQuizImage =
+ 'https://i.namu.wiki/i/fcBRfQZOo2eCcLsPe63ZCKbzOBizhxvSKUrzEBqaMfTMSOe8I81p9s2SY_YxDxCEArNkSh_mwUTrnqX6ITkfUp3ey-p2xz1I6hk1oIxKEH-n3RFlgczUZFTxiu5xnvQUKPEo8BIOiKclL0-kJgi79w.webp';
+
+type Props = {
+ title: string;
+ description: string;
+};
+
+export const QuizPreview = ({ title, description }: Props) => {
+ return (
+