ultisuite-client/app/account/[[...section]]/page.tsx
R3D347HR4Y d6d18f911b
Some checks failed
E2E / Playwright e2e (push) Has been cancelled
Lots of stuff and mobile app
2026-06-17 00:13:28 +02:00

15 lines
389 B
TypeScript

import { CompteSettingsSectionFromSegments } from "@/components/compte/compte-settings-section-view"
export function generateStaticParams() {
return [{ section: [] }]
}
export default async function AccountSectionPage({
params,
}: {
params: Promise<{ section?: string[] }>
}) {
const { section } = await params
return <CompteSettingsSectionFromSegments segments={section} />
}