mirror of
https://git.um-react.app/um/um-react.git
synced 2025-11-28 03:23:02 +00:00
9 lines
219 B
TypeScript
9 lines
219 B
TypeScript
export function SettingsHome() {
|
|
return (
|
|
<div className="flex flex-col gap-4">
|
|
<h1 className="text-2xl font-bold">设置</h1>
|
|
<p>在这里你可以设置应用的基本配置。</p>
|
|
</div>
|
|
);
|
|
}
|