import { Helmet } from '@modern-js/runtime/head';
import { ListRow, Button, Icon, IconFont, Space, PageProvider } from '@feewee/h5app-common';
import { useSafeState } from 'ahooks';
import { useEffect } from 'react';
const Index = () => {
const [loading, setLoading] = useSafeState(true);
useEffect(() => {
setTimeout(() => setLoading(false), 2500);
}, []);
return (
<>
{/* 这里面可以映入外部的一些样式或者js之类的,如果有需要的话。也可以调整head里的信息 */}
demo 页面
console.info('点击事件')} />
>
);
};
export default Index;