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.
17 lines
407 B
JavaScript
17 lines
407 B
JavaScript
|
1 month ago
|
import React from 'react';
|
||
|
|
import styles from './EventWarningManagement.less';
|
||
|
|
|
||
|
|
const EventWarningManagement = () => {
|
||
|
|
return (
|
||
|
|
<div className={styles.container}>
|
||
|
|
<div className={styles.content}>
|
||
|
|
<h2>事件预警管理</h2>
|
||
|
|
{/* 这里可以添加具体的内容 */}
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
export default EventWarningManagement;
|
||
|
|
|