mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
19 lines
455 B
TypeScript
19 lines
455 B
TypeScript
import {PageParams} from "@/types/next";
|
|
import {Page, PageContent, PageHeader, PageTitle} from "@/features/layout/page";
|
|
|
|
|
|
export default async function RoutePage(props: PageParams<{}>) {
|
|
|
|
return (
|
|
<Page>
|
|
<PageHeader>
|
|
<PageTitle>
|
|
Settings
|
|
</PageTitle>
|
|
</PageHeader>
|
|
<PageContent>
|
|
content
|
|
</PageContent>
|
|
</Page>
|
|
)
|
|
} |