refactor(FE): Refactor ProductTable and RowOptionsMenu for improved

clarity
This commit is contained in:
rstubryan
2026-03-02 10:42:34 +07:00
parent 8397d76171
commit 7eaf6b7a3a
2 changed files with 233 additions and 272 deletions
+1 -5
View File
@@ -1,11 +1,7 @@
import ProductsTable from '@/components/pages/master-data/product/ProductTable';
const Product = () => {
return (
<section className='w-full p-4'>
<ProductsTable />
</section>
);
return <ProductsTable />;
};
export default Product;