| 12345678910111213141516 |
- import React from 'react'
- import { View, Text } from '@tarojs/components'
- import YongrenTabBarLayout from '@/layouts/yongren-tab-bar-layout'
- const YongrenSettingsPage: React.FC = () => {
- return (
- <YongrenTabBarLayout activeKey="settings">
- <View className="p-4">
- <Text className="text-xl font-bold">设置</Text>
- <Text className="text-gray-600 mt-2">企业设置页面(待实现)</Text>
- </View>
- </YongrenTabBarLayout>
- )
- }
- export default YongrenSettingsPage
|