7217d10e
张志伟
🐹 feat(*): 更新脚手架
|
2
3
4
|
import { ListRow, Button, Icon, IconFont, Space, PageProvider } from '@feewee/h5app-common';
import { useSafeState } from 'ahooks';
import { useEffect } from 'react';
|
7217d10e
张志伟
🐹 feat(*): 更新脚手架
|
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
const Index = () => {
const [loading, setLoading] = useSafeState(true);
useEffect(() => {
setTimeout(() => setLoading(false), 2500);
}, []);
return (
<>
<Helmet>
{/* 这里面可以映入外部的一些样式或者js之类的,如果有需要的话。也可以调整head里的信息 */}
<link rel="icon" type="image/x-icon" href="https://lf3-static.bytednsdoc.com/obj/eden-cn/uhbfnupenuhf/favicon.ico" />
</Helmet>
<PageProvider tittle="demo页面" loading={loading}>
<main className="p-5">
<div>demo 页面</div>
<ListRow title="标题" description="副标题" extra="描述文字" radius={6} align="center" onClick={() => console.info('点击事件')} />
<Button type="primary">默认</Button>
<Space>
<Icon.Add />
<IconFont name="down" />
</Space>
</main>
</PageProvider>
</>
);
};
|