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(); props.handleDownload(); }}>下载 ) : ( { e.preventDefault(); }}>下载 ) }
) }