|
|
@@ -31,42 +31,26 @@ const copyright = (
|
|
|
</Fragment>
|
|
|
);
|
|
|
|
|
|
-class UserLayout extends React.PureComponent {
|
|
|
- // @TODO title
|
|
|
- // getPageTitle() {
|
|
|
- // const { routerData, location } = this.props;
|
|
|
- // const { pathname } = location;
|
|
|
- // let title = 'Ant Design Pro';
|
|
|
- // if (routerData[pathname] && routerData[pathname].name) {
|
|
|
- // title = `${routerData[pathname].name} - Ant Design Pro`;
|
|
|
- // }
|
|
|
- // return title;
|
|
|
- // }
|
|
|
-
|
|
|
- render() {
|
|
|
- const { children } = this.props;
|
|
|
- return (
|
|
|
- // @TODO <DocumentTitle title={this.getPageTitle()}>
|
|
|
- <div className={styles.container}>
|
|
|
- <div className={styles.lang}>
|
|
|
- <SelectLang />
|
|
|
- </div>
|
|
|
- <div className={styles.content}>
|
|
|
- <div className={styles.top}>
|
|
|
- <div className={styles.header}>
|
|
|
- <Link to="/">
|
|
|
- <img alt="logo" className={styles.logo} src={logo} />
|
|
|
- <span className={styles.title}>Ant Design</span>
|
|
|
- </Link>
|
|
|
- </div>
|
|
|
- <div className={styles.desc}>Ant Design 是西湖区最具影响力的 Web 设计规范</div>
|
|
|
- </div>
|
|
|
- {children}
|
|
|
+const UserLayout = ({ children }) => (
|
|
|
+ // @TODO <DocumentTitle title={this.getPageTitle()}>
|
|
|
+ <div className={styles.container}>
|
|
|
+ <div className={styles.lang}>
|
|
|
+ <SelectLang />
|
|
|
+ </div>
|
|
|
+ <div className={styles.content}>
|
|
|
+ <div className={styles.top}>
|
|
|
+ <div className={styles.header}>
|
|
|
+ <Link to="/">
|
|
|
+ <img alt="logo" className={styles.logo} src={logo} />
|
|
|
+ <span className={styles.title}>Ant Design</span>
|
|
|
+ </Link>
|
|
|
</div>
|
|
|
- <GlobalFooter links={links} copyright={copyright} />
|
|
|
+ <div className={styles.desc}>Ant Design 是西湖区最具影响力的 Web 设计规范</div>
|
|
|
</div>
|
|
|
- );
|
|
|
- }
|
|
|
-}
|
|
|
+ {children}
|
|
|
+ </div>
|
|
|
+ <GlobalFooter links={links} copyright={copyright} />
|
|
|
+ </div>
|
|
|
+);
|
|
|
|
|
|
export default UserLayout;
|