Files
Trilium/apps/website3/src/components/Card.tsx

18 lines
372 B
TypeScript
Raw Normal View History

2025-09-26 23:06:57 +03:00
import { ComponentChildren } from "preact";
interface CardProps {
title: string;
children: ComponentChildren;
}
export default function Card({ title, children }: CardProps) {
return (
<div className="card">
<p>
<span class="text-big">{title}</span><br />
{children}
</p>
</div>
)
}