import './card-proj-result.css'; import {IProjResult} from "../../interfaces/card/ICardProj.ts"; export default function CardProjResult(props: IProjResult) { return (
{props.title} {props.isSuccess ? : }
{ props.handleFeedback ? (
{ { e.preventDefault(); props.handleFeedback?.(); }}>查看详情 }
) : <> }
) }