feat(FE-40): create Nonstock page

This commit is contained in:
ValdiANS
2025-10-02 12:02:11 +07:00
parent 62b3894983
commit 230e966197
+11
View File
@@ -0,0 +1,11 @@
import NonstocksTable from '@/components/pages/master-data/nonstock/NonstocksTable';
const Nonstock = () => {
return (
<section className='w-full p-4'>
<NonstocksTable />
</section>
);
};
export default Nonstock;