cfc13669
张志伟
🐱 feat(*): 新增组件库
|
1
|
import { Helmet } from '@modern-js/runtime/head';
|
7217d10e
张志伟
🐹 feat(*): 更新脚手架
|
2
3
4
|
import { ListRow, Button, Icon, IconFont, Space, PageProvider } from '@feewee/h5app-common';
import { useSafeState } from 'ahooks';
import { useEffect } from 'react';
|
cfc13669
张志伟
🐱 feat(*): 新增组件库
|
5
|
|
7217d10e
张志伟
🐹 feat(*): 更新脚手架
|
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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('点击事件')} />
|
1420f8c3
张志伟
🐹 feat(*): 增加调试js
|
23
24
25
|
<Button type="primary" onClick={() => {
window.eruda.init();
}}>默认</Button>
|
7217d10e
张志伟
🐹 feat(*): 更新脚手架
|
26
27
28
29
30
31
32
33
34
|
<Space>
<Icon.Add />
<IconFont name="down" />
</Space>
</main>
</PageProvider>
</>
);
};
|
cfc13669
张志伟
🐱 feat(*): 新增组件库
|
35
36
|
export default Index;
|