From 230e96619788e87856f22c566e19955c3b511e32 Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Thu, 2 Oct 2025 12:02:11 +0700 Subject: [PATCH] feat(FE-40): create Nonstock page --- src/app/master-data/nonstock/page.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/app/master-data/nonstock/page.tsx diff --git a/src/app/master-data/nonstock/page.tsx b/src/app/master-data/nonstock/page.tsx new file mode 100644 index 00000000..0812a5e2 --- /dev/null +++ b/src/app/master-data/nonstock/page.tsx @@ -0,0 +1,11 @@ +import NonstocksTable from '@/components/pages/master-data/nonstock/NonstocksTable'; + +const Nonstock = () => { + return ( +
+ +
+ ); +}; + +export default Nonstock;