refactor(FE): Refactor master-data pages to simplify component rendering

This commit is contained in:
rstubryan
2026-03-02 11:17:54 +07:00
parent 7db6ae4077
commit aadf10b8b9
25 changed files with 2118 additions and 2269 deletions
+1 -5
View File
@@ -1,11 +1,7 @@
import AreasTable from '@/components/pages/master-data/area/AreasTable';
const Nonstock = () => {
return (
<section className='w-full p-4'>
<AreasTable />
</section>
);
return <AreasTable />;
};
export default Nonstock;