mirror of
https://github.com/marcogll/TaxHacker_s23.git
synced 2026-01-13 13:25:18 +00:00
15 lines
351 B
TypeScript
15 lines
351 B
TypeScript
import ProfileSettingsForm from "@/components/settings/profile-settings-form copy"
|
|
import { getCurrentUser } from "@/lib/auth"
|
|
|
|
export default async function ProfileSettingsPage() {
|
|
const user = await getCurrentUser()
|
|
|
|
return (
|
|
<>
|
|
<div className="w-full max-w-2xl">
|
|
<ProfileSettingsForm user={user} />
|
|
</div>
|
|
</>
|
|
)
|
|
}
|