9 lines
320 B
TypeScript
9 lines
320 B
TypeScript
export default function AccountPage() {
|
|
return (
|
|
<div className="w-full rounded-lg bg-white p-4 text-neutral-700 shadow-sm">
|
|
<h1 className="text-lg font-medium">个人中心</h1>
|
|
<p className="mt-2 text-sm text-neutral-500">资料与密码修改等功能可在此页对接 IAM。</p>
|
|
</div>
|
|
);
|
|
}
|