11 lines
317 B
TypeScript
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} />
|
|
}
|