|
|
@@ -0,0 +1,15 @@
|
|
|
+import React from 'react'
|
|
|
+import { View, Text } from '@tarojs/components'
|
|
|
+import { RencaiTabBarLayout } from '@d8d/rencai-shared-ui/components/RencaiTabBarLayout'
|
|
|
+
|
|
|
+const SettingsPage: React.FC = () => {
|
|
|
+ return (
|
|
|
+ <RencaiTabBarLayout activeKey="settings">
|
|
|
+ <View className="h-full flex items-center justify-center bg-gray-100">
|
|
|
+ <Text className="text-gray-600">设置页面占位</Text>
|
|
|
+ </View>
|
|
|
+ </RencaiTabBarLayout>
|
|
|
+ )
|
|
|
+}
|
|
|
+
|
|
|
+export default SettingsPage
|