import { Card } from "@arco-design/web-react"; import { url } from "inspector"; import "./index.less"; const { Meta } = Card; interface IProps { imgUrl: string; title: string; desc: string; action: string; styles?: {}; } function BsCard(props: IProps) { return (

{props.title}

} > {props.desc} {props.action} } />
); } export default BsCard;