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