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