import React from "react"; interface CardProps { title?: string; children: React.ReactNode; className?: string; } export function Card({ title, children, className = "" }: CardProps) { return (
{title && (

{title}

)}
{children}
); }