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