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.
18 lines
429 B
JavaScript
18 lines
429 B
JavaScript
import React from 'react';
|
|
import { Card } from 'antd';
|
|
import styles from './EmergencyMap.less';
|
|
|
|
const EmergencyMap = () => {
|
|
return (
|
|
<div className={styles.container}>
|
|
<Card>
|
|
<div style={{ textAlign: 'center', padding: '50px', fontSize: '18px' }}>
|
|
待开发一张图
|
|
</div>
|
|
</Card>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default EmergencyMap;
|