import React from 'react'; export type CardProps = { className?: string; bodyClassName?: string; }; export const Card: React.FC = ({children, className, bodyClassName}) => { return (
{children}
); };