|
@@ -1,11 +1,10 @@
|
|
|
import React, { useState, useEffect } from 'react';
|
|
|
import { Modal } from 'antd';
|
|
|
-import Icon from '@/tenants-ui/Icon';
|
|
|
+import Icon from '@/tenants-ui/SgIcon';
|
|
|
import styles from './index.less';
|
|
|
import cx from 'classnames';
|
|
|
|
|
|
export default ({ onClose }) => {
|
|
|
-
|
|
|
return (
|
|
|
<>
|
|
|
<Modal width={450} visible maskClosable={false} closable={false} footer={null}>
|
|
@@ -16,9 +15,7 @@ export default ({ onClose }) => {
|
|
|
<Icon type="close" />
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div className={styles.content}>
|
|
|
- 我是内容
|
|
|
- </div>
|
|
|
+ <div className={styles.content}>我是内容</div>
|
|
|
</div>
|
|
|
</Modal>
|
|
|
</>
|