import type { FC, ReactNode } from "react"; interface ComponentProps { children: ReactNode; className?: string; } export const Card: FC = ({ children, className }) => { return (
{children}
); }; export function CardContent({ children, className }: ComponentProps) { return
{children}
; }