import type { ReactNode, MouseEvent } from 'react'; interface CardProps { children: ReactNode; className?: string; onClick?: (e: MouseEvent) => void; onContextMenu?: (e: MouseEvent) => void; } export function Card({ children, className = '', onClick, onContextMenu }: CardProps) { return (
{children}
); } export function CardHeader({ children, className = '' }: CardProps) { return (
{children}
); } export function CardContent({ children, className = '' }: CardProps) { return
{children}
; }