fix: 코드 스타일 개선 - 쉼표 추가 및 JSX 포맷팅 수정

This commit is contained in:
JiWoong Sul
2025-06-19 16:52:46 +09:00
parent 6f4bc163a7
commit a2b09539c6
2 changed files with 4 additions and 3 deletions

View File

@@ -48,7 +48,8 @@ function App() {
className="h-12 w-12 text-primary" className="h-12 w-12 text-primary"
fill="none" fill="none"
stroke="currentColor" stroke="currentColor"
viewBox="0 0 24 24"> viewBox="0 0 24 24"
>
<path <path
strokeLinecap="round" strokeLinecap="round"
strokeLinejoin="round" strokeLinejoin="round"

View File

@@ -9,7 +9,7 @@ const Card = React.forwardRef<
ref={ref} ref={ref}
className={cn( className={cn(
"rounded-lg border bg-card text-card-foreground shadow-sm", "rounded-lg border bg-card text-card-foreground shadow-sm",
className className,
)} )}
{...props} {...props}
/> />
@@ -36,7 +36,7 @@ const CardTitle = React.forwardRef<
ref={ref} ref={ref}
className={cn( className={cn(
"text-2xl font-semibold leading-none tracking-tight", "text-2xl font-semibold leading-none tracking-tight",
className className,
)} )}
{...props} {...props}
/> />