You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
796 B
JavaScript

1 month ago
import React from 'react';
import { Card, Row, Col, Statistic, Progress, Button, Space } from 'antd';
1 month ago
import styles from './SafeMajorHazardList.less';
1 month ago
const SafeMajorHazardList = () => {
1 month ago
return (
<div className={styles.container}>
<div className={styles.TopButton}>
<Button className={styles.TopButtonItem}>责任落实</Button>
<Button className={styles.TopButtonItem}>在线监测预警</Button>
<Button className={styles.TopButtonItem}>风险管控</Button>
<Button className={styles.TopButtonItem}>评估报告及隐患处理</Button>
</div>
1 month ago
<div className={styles.content}>
1 month ago
</div>
</div>
);
};
1 month ago
export default SafeMajorHazardList;