Skip to content
Snippets Groups Projects

fix: event전달 함수 누락 오류 해결

Merged 석찬 윤 requested to merge develop into main
4 files
+ 47
92
Compare changes
  • Side-by-side
  • Inline

Files

+ 2
2
@@ -24,7 +24,7 @@ const cardVariants = cva(
@@ -24,7 +24,7 @@ const cardVariants = cva(
export default function Card({
export default function Card({
meeting,
meeting,
theme = "black",
theme = "black",
onClick,
onDetail,
onJoin,
onJoin,
onDelete,
onDelete,
onClose,
onClose,
@@ -55,7 +55,7 @@ export default function Card({
@@ -55,7 +55,7 @@ export default function Card({
const deadlineTime = convertIndexToTime(time_idx_deadline);
const deadlineTime = convertIndexToTime(time_idx_deadline);
return (
return (
<div className={cn(variantClass)} onClick={onClick} role="button">
<div className={cn(variantClass)} onClick={onDetail}>
<h3 className="mb-2 text-xl font-bold">{title}</h3>
<h3 className="mb-2 text-xl font-bold">{title}</h3>
<Label size="sm" theme="black">
<Label size="sm" theme="black">
장소: {location}
장소: {location}
Loading