This commit is contained in:
wass08
2026-01-21 10:03:29 +09:00
parent 14b0e6a98d
commit 5de0818633
53 changed files with 1241 additions and 1420 deletions
+6 -6
View File
@@ -1,4 +1,4 @@
import { type JSX } from "react";
import type { JSX } from 'react'
export function Card({
className,
@@ -6,10 +6,10 @@ export function Card({
children,
href,
}: {
className?: string;
title: string;
children: React.ReactNode;
href: string;
className?: string
title: string
children: React.ReactNode
href: string
}): JSX.Element {
return (
<a
@@ -23,5 +23,5 @@ export function Card({
</h2>
<p>{children}</p>
</a>
);
)
}