Files
makemd/dashboard/src/pages/Merchant/index.tsx

29 lines
887 B
TypeScript
Raw Normal View History

import React from 'react';
import { Card, Layout, Typography, Row, Col, Button } from 'antd';
import { UserOutlined, PlusOutlined } from '@ant-design/icons';
const { Content } = Layout;
const { Title, Text } = Typography;
const MerchantManagement: React.FC = () => {
return (
<Content style={{ padding: 24, margin: 0, minHeight: 280, background: '#fff' }}>
<div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center', marginBottom: 24 }}>
<Title level={4}></Title>
<Button type="primary" icon={<PlusOutlined />}>
</Button>
</div>
<Row gutter={[16, 16]}>
<Col span={24}>
<Card title="商户列表">
<Text></Text>
</Card>
</Col>
</Row>
</Content>
);
};
export default MerchantManagement;