We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 147e328 commit 8967407Copy full SHA for 8967407
website/src/pages/team/index.tsx
@@ -1,15 +1,19 @@
1
-import React from 'react';
2
-import { Link } from 'react-router-dom';
+import Footer from '../../component/Footer';
3
import { DefaultProps } from '../../';
4
import styles from './index.module.less';
5
6
export default function Team(props: DefaultProps) {
7
return (
8
<div className={styles.warpper}>
9
- 团队
10
- <p>
11
- <Link to="/components/about">查看组件文档</Link>
12
- </p>
+ <header className={styles.header}>
+ <div>
+ <h2>UIW Mobile RN</h2>
+ <p>
+ 一个基于 React Native 的 UI 组件库
13
+ </p>
14
+ </div>
15
+ </header>
16
+ <Footer />
17
</div>
18
);
19
}
0 commit comments