You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
524 B
27 lines
524 B
import { Modal } from 'antd';
|
|
import React, { PropsWithChildren } from 'react';
|
|
|
|
interface CreateFormProps {
|
|
modalVisible: boolean;
|
|
onCancel: () => void;
|
|
}
|
|
|
|
const CreateForm: React.FC<PropsWithChildren<CreateFormProps>> = (props) => {
|
|
const { modalVisible, onCancel } = props;
|
|
|
|
return (
|
|
<Modal
|
|
destroyOnClose
|
|
title="新建"
|
|
width={420}
|
|
open={modalVisible}
|
|
onCancel={() => onCancel()}
|
|
footer={null}
|
|
>
|
|
{props.children}
|
|
</Modal>
|
|
);
|
|
};
|
|
|
|
export default CreateForm;
|