bug fix
This commit is contained in:
23
src/pages/about/index.tsx
Normal file
23
src/pages/about/index.tsx
Normal file
@@ -0,0 +1,23 @@
|
||||
/**
|
||||
* Title: 地产详情
|
||||
* Routes:
|
||||
* - ./src/pages/routes
|
||||
*/
|
||||
import React from 'react';
|
||||
import Header from '@/components/Header';
|
||||
import { formatMessage } from 'umi-plugin-locale';
|
||||
|
||||
import styles from './style.less';
|
||||
|
||||
const AboutPage: React.FC = () => {
|
||||
return (
|
||||
<div className={styles.container}>
|
||||
<Header title={formatMessage({ id: 'about.title' })} />
|
||||
<div className={styles.body}>
|
||||
body
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default AboutPage;
|
||||
Reference in New Issue
Block a user