import { Button, Result } from "antd"; interface IWidget { total?: number; onClose?: Function; onInit?: Function; } const CopyToResult = ({ total, onClose, onInit }: IWidget) => { return ( { if (typeof onInit !== "undefined") { onInit(); } }} > 从新开始 , , ]} /> ); }; export default CopyToResult;