feat: first commit

This commit is contained in:
eleanor.mao
2025-03-31 22:34:22 +08:00
commit d25187c9c8
390 changed files with 57031 additions and 0 deletions

View File

View File

@ -0,0 +1,18 @@
import React from 'react';
import BaseTabBar from '@/components/tab-bar';
import './index.less';
interface IProps extends React.PropsWithChildren {}
export default function HomePage(props: IProps) {
const { children } = props;
return (
<React.Fragment>
{children}
<BaseTabBar />
</React.Fragment>
);
}