- Updated App entry point to utilize Expo Router, simplifying the navigation setup. - Removed legacy navigation components and services to streamline the codebase. - Adjusted package.json to reflect the new entry point and updated dependencies for compatibility. - Enhanced overall application structure by consolidating navigation logic and improving maintainability.
14 lines
345 B
TypeScript
14 lines
345 B
TypeScript
/**
|
||
* 个人主页 ProfileScreen
|
||
* 胡萝卜BBS - 当前用户个人主页
|
||
* 使用统一的 UserProfileScreen 组件,mode='self'
|
||
*/
|
||
|
||
import React from 'react';
|
||
import UserProfileScreen from './UserProfileScreen';
|
||
|
||
export const ProfileScreen: React.FC = () => {
|
||
return <UserProfileScreen mode="self" />;
|
||
};
|
||
|
||
export default ProfileScreen; |