Files
boluo-app-main/src/components/home-page/index.tsx
2025-06-27 22:46:24 +08:00

22 lines
414 B
TypeScript

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