This commit is contained in:
saplf
2019-09-08 01:24:27 +08:00
parent 1c0e5ddb66
commit 8282bb81d4
11 changed files with 82 additions and 33 deletions

23
src/pages/about/index.tsx Normal file
View 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;