Commit 2744ec8c authored by 熊成伟's avatar 熊成伟

debug

parent b3078cec
Pipeline #16291 failed with stages
import React, {useState} from 'react';
import {Modal, WhiteSpace, WingBlank} from "antd-mobile";
import './index.less'
const Send = (props) => {
const [visible, setVisible] = useState(false);
const data = [{}, {}, {}, {}];
return (
<div>
<WingBlank>
<WhiteSpace/>
<div>
{data.length > 0 && data.map((item, index) => (
<div>
<div>
</div>
<span>{['科兴', '申请中', ''][item]}</span>
</div>
))}
</div>
</WingBlank>
<Modal
title="选择会议室"
className="date-modal"
visible={visible}
transparent
onClose={() => setVisible(false)}
>
</Modal>
</div>
);
};
export default Send;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment