11 lines
329 B
TypeScript
11 lines
329 B
TypeScript
import { AdminSettingsSectionFromSegments } from "@/components/admin/settings/admin-settings-section-view"
|
|
|
|
export default async function AdminSettingsSectionPage({
|
|
params,
|
|
}: {
|
|
params: Promise<{ section?: string[] }>
|
|
}) {
|
|
const { section } = await params
|
|
return <AdminSettingsSectionFromSegments segments={section} />
|
|
}
|