| 12345678910111213141516171819202122 |
- 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 (
- <TabBarLayout activeKey="home">
- <View className="p-4">
- <Text className="text-2xl font-bold text-gray-900">首页</Text>
- <View className="mt-4">
- <Text className="text-gray-600">欢迎来到首页!</Text>
- <Label>abc</Label>
- <Input />
- </View>
- </View>
- </TabBarLayout>
- )
- }
- export default HomePage
|