12 lines
385 B
TypeScript
12 lines
385 B
TypeScript
import AddAgentForm from "@/components/form/agent/agent-form";
|
|
import CreateArticleForm from "@/components/form/article/create-article-form";
|
|
import AddProductForm from "@/components/form/product/create-product-form";
|
|
|
|
export default function CreateAgent() {
|
|
return (
|
|
<div className="bg-slate-100 lg:p-3 dark:!bg-black overflow-y-auto">
|
|
<AddAgentForm />
|
|
</div>
|
|
);
|
|
}
|