import { Modal } from 'antd'; interface Props { data: any; cancel: () => void; } export default (props: Props) => { return ( { props.cancel(); }} onCancel={() => { props.cancel(); }} width={700} > 下发 ); };