feat(FE-64): add MovementTable component for inventory movement management

This commit is contained in:
rstubryan
2025-10-08 16:02:52 +07:00
parent 7ceb25ea71
commit 3f97ec45f8
2 changed files with 662 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import MovementTable from '@/components/pages/inventory/movement/MovementTable';
const Product = () => {
return (
<section className='w-full p-4'>
<MovementTable />
</section>
);
};
export default Product;