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 ProductsTable from "@/components/pages/master-data/product/ProductTable";
const Product = () => {
return (
<section className="w-full p-4">
<ProductsTable />
</section>
);
};
export default Product;