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
426 B
JavaScript
18 lines
426 B
JavaScript
import React from 'react';
|
|
import { Card } from 'antd';
|
|
import styles from './EmergencyRescue.less';
|
|
|
|
const EmergencyRescue = () => {
|
|
return (
|
|
<div className={styles.container}>
|
|
<Card>
|
|
<div style={{ textAlign: 'center', padding: '50px', fontSize: '18px' }}>
|
|
救援
|
|
</div>
|
|
</Card>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default EmergencyRescue;
|