index.tsx 501 B

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