1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| import React, { useState, useRef, useEffect } from 'react';
| import { Col, Form, Modal, Row, Checkbox, Skeleton, Tree, Drawer, Space, Button, Card } from 'antd';
|
| const Edit = (props) => {
| return (
| <>
| <Drawer
| open={props.open}
| onClose={() => {
| props.onCancel();
| }}
| getContainer={props.refCurr}
| rootStyle={{ position: "absolute" }}
| mask={false}
| width={378}
| >
| <Card>
|
| </Card>
| </Drawer>
| </>
| )
| }
|
| export default Edit;
|
|