mirror of
https://github.com/hex248/sprint.git
synced 2026-02-08 02:33:01 +00:00
12 lines
274 B
TypeScript
12 lines
274 B
TypeScript
import { SettingsPageLayout } from "@/components/settings-page-layout";
|
|
|
|
function Account() {
|
|
return (
|
|
<SettingsPageLayout title="Account">
|
|
<p className="font-400">Account page here</p>
|
|
</SettingsPageLayout>
|
|
);
|
|
}
|
|
|
|
export default Account;
|