import React, {FC} from "react" import {PropsWithChildren} from "react" const Card: FC> = ({children, className = ''}) => { return
{children}
} export default Card interface CardProps { className?: string }