From 8b20dc9d9bbc2f9a14489cfcd00b03381ec0156a Mon Sep 17 00:00:00 2001 From: eunxoo Date: Tue, 20 Feb 2024 08:11:13 +0900 Subject: [PATCH] =?UTF-8?q?[FEAT]=20=EA=B8=80=EC=9E=90=EC=88=98=20?= =?UTF-8?q?=ED=91=9C=EC=8B=9C,=20=EB=A1=9C=EA=B3=A0=20=ED=81=B4=EB=A6=AD?= =?UTF-8?q?=EC=8B=9C=20=EC=9D=B4=EB=8F=99=20=EB=A7=81=ED=81=AC=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Logo.jsx | 5 +++-- src/components/Question.jsx | 11 +++++++++++ 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/src/components/Logo.jsx b/src/components/Logo.jsx index 924c765..9538e2c 100644 --- a/src/components/Logo.jsx +++ b/src/components/Logo.jsx @@ -1,4 +1,5 @@ import React from "react"; +import { Link } from "react-router-dom"; import styled from "styled-components"; const LogoContainer = styled.div` @@ -20,9 +21,9 @@ const LogoImg = styled.img` const Logo = () => { return ( - + Logo - + ); diff --git a/src/components/Question.jsx b/src/components/Question.jsx index 03656b0..d7557d5 100644 --- a/src/components/Question.jsx +++ b/src/components/Question.jsx @@ -51,6 +51,12 @@ const Question = ({ documentData }) => { {`${index + 1}: `}   {question.content} + + {documentData && documentData.answerList + ? documentData.answerList[index].length + : ""} + 자 +