import React from 'react' import { View, Text } from '@tarojs/components' import { TabBarLayout } from '@/layouts/tab-bar-layout' const ProfilePage: React.FC = () => { return ( 个人中心 这里展示个人信息 ) } export default ProfilePage