ultisuite-client/app/compte/[[...section]]/page.tsx
R3D347HR4Y 3bbf3691b0
Some checks failed
E2E / Playwright e2e (push) Has been cancelled
bordel c'est beau
2026-06-11 10:10:39 +02:00

11 lines
317 B
TypeScript

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