import { Button, Popconfirm } from 'antd'; import React from 'react'; import { CrudContext } from './useCrud'; const CancelCrud: React.FC<{ crudCtx: CrudContext, confirm?: boolean, text?: string }> = ({ crudCtx, confirm, text }) => { text = text || '返回'; if (confirm) { return ( { crudCtx.goto(null, null); }} > ) } else { return ( ) } }; export default CancelCrud