refactor(FE-62): rename Product component to Movement for clarity

This commit is contained in:
rstubryan
2025-10-08 16:16:12 +07:00
parent 3f97ec45f8
commit ddbf8b0896
+2 -2
View File
@@ -1,6 +1,6 @@
import MovementTable from '@/components/pages/inventory/movement/MovementTable';
const Product = () => {
const Movement = () => {
return (
<section className='w-full p-4'>
<MovementTable />
@@ -8,4 +8,4 @@ const Product = () => {
);
};
export default Product;
export default Movement;