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