feat(FE-40,41,42): add Product management pages with form handling and table display

This commit is contained in:
rstubryan
2025-10-07 21:23:12 +07:00
parent e1569c607c
commit 250c42a04b
5 changed files with 550 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import ProductForm from '@/components/pages/master-data/product/form/ProductForm';
const AddProduct = () => {
return (
<div className="w-full p-4 flex flex-row justify-center">
<ProductForm />
</div>
);
};
export default AddProduct;