import React from 'react' import { View, Text } from '@tarojs/components' import { TabBarLayout } from '@/layouts/tab-bar-layout' import { Input } from '@/components/ui/input' import { Label } from '@/components/ui/label' const HomePage: React.FC = () => { return ( 首页 欢迎来到首页! ) } export default HomePage