first commit
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
import {Button, Card, Row, Col, Breadcrumb, Space} from "antd";
|
||||
|
||||
const Third = () => (
|
||||
<div>
|
||||
<Card style={{ marginBottom: 16 }}>
|
||||
<Breadcrumb items={[
|
||||
{ title: '多级菜单' },
|
||||
{ title: '二级菜单' },
|
||||
{ title: '三级菜单' },
|
||||
{ title: '四级页面' },
|
||||
]} />
|
||||
<h2 style={{ marginTop: 16, marginBottom: 0 }}>四级页面</h2>
|
||||
</Card>
|
||||
<Row gutter={[16, 16]}>
|
||||
<Col span={24}>
|
||||
<Card style={{height: 200}} />
|
||||
</Col>
|
||||
<Col span={16}>
|
||||
<Card style={{height: 200}} />
|
||||
</Col>
|
||||
<Col span={8}>
|
||||
<Card style={{height: 200}} />
|
||||
</Col>
|
||||
</Row>
|
||||
<Card style={{ marginTop: 16 }}>
|
||||
<Space>
|
||||
<Button>重置</Button>
|
||||
<Button type="primary">提交</Button>
|
||||
</Space>
|
||||
</Card>
|
||||
</div>
|
||||
);
|
||||
|
||||
export default Third;
|
||||
Reference in New Issue
Block a user