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