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