From d070ee90a3348f362871d3f6f22253008c86525c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=84=9D=EC=B0=AC=20=EC=9C=A4?= <ysc0731@ajou.ac.kr> Date: Tue, 10 Dec 2024 10:45:44 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=83=81=EC=84=B8=EB=B3=B4=EA=B8=B0=20?= =?UTF-8?q?=EC=9D=B4=EB=B2=A4=ED=8A=B8=EB=A6=AC=EC=8A=A4=EB=84=88=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Card.jsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/Card.jsx b/src/components/Card.jsx index cc05313..84d1ae6 100644 --- a/src/components/Card.jsx +++ b/src/components/Card.jsx @@ -56,7 +56,9 @@ export default function Card({ return ( <div className={cn(variantClass)} onClick={onDetail}> - <h3 className="mb-2 text-xl font-bold">{title}</h3> + <h3 className="mb-2 text-xl font-bold" onClick={onDetail}> + {title} + </h3> <Label size="sm" theme="black"> 장소: {location} </Label> -- GitLab