9 lines
226 B
TypeScript
9 lines
226 B
TypeScript
import React from "react";
|
|
import PlaceholderPage from "@/components/PlaceholderPage";
|
|
|
|
const Profile: React.FC = () => {
|
|
return <PlaceholderPage title="个人中心" showBack={false} />;
|
|
};
|
|
|
|
export default Profile;
|