import './card-proj-download.css'; import { IProjDownload } from "../../interfaces/card/ICardProj.ts"; export default function CardProjDownload(props: IProjDownload) { return ( //
{props.title}
{props.desc}
{ props.canBtnClick ? (
) : ( // { // e.preventDefault(); // }}>下载
) }
) }