28 lines
701 B
JavaScript
28 lines
701 B
JavaScript
import React from 'react';
|
|
import Sheet from './components/Sheet';
|
|
import { Upload, Button, Icon, BackTop } from 'antd';
|
|
|
|
function Entry() {
|
|
return (
|
|
<div>
|
|
<h2 class="ant-typography" style={{ textAlign: 'center' }}>
|
|
浙江大学学生E志者协会2020年纳新报名表
|
|
</h2>
|
|
<center>
|
|
<Upload>
|
|
<Button style={{ marginBlockEnd: 20 }}>
|
|
<Icon type="upload" />
|
|
上传照片
|
|
</Button>
|
|
</Upload>
|
|
</center>
|
|
<Sheet />
|
|
<BackTop visibilityHeight={200} />
|
|
<p style={{ textAlign: 'center' }}>
|
|
浙江大学学生E志者协会©2020 Created by EVATech
|
|
</p>
|
|
</ div>
|
|
)
|
|
}
|
|
|
|
export default Entry; |