Adding the Edit/creation for agent.

This commit is contained in:
charles-gauthereau
2024-11-11 12:39:59 +01:00
parent 3cf8f3f264
commit f9e00cb2d9
14 changed files with 4711 additions and 8753 deletions
+13 -1
View File
@@ -1,7 +1,19 @@
import {PageParams} from "@/types/next";
import {Page, PageContent, PageDescription, PageHeader, PageTitle} from "@/features/layout/page";
import {AgentForm} from "@/components/wrappers/Agent/AgentForm/AgentForm";
export default async function RoutePage(props: PageParams<{}>) {
return (
<div>new agent</div>
<Page>
<PageHeader>
<PageTitle>
Create new agent
</PageTitle>
</PageHeader>
<PageContent>
<AgentForm/>
</PageContent>
</Page>
)
}