From d771b2095692aab5f82dddea2cc4c70499a8c0cc Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Thu, 9 Oct 2025 10:04:55 +0700 Subject: [PATCH] feat(FE-43): create Master Data FCR page --- src/app/master-data/fcr/page.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/app/master-data/fcr/page.tsx diff --git a/src/app/master-data/fcr/page.tsx b/src/app/master-data/fcr/page.tsx new file mode 100644 index 00000000..9ca9c55d --- /dev/null +++ b/src/app/master-data/fcr/page.tsx @@ -0,0 +1,11 @@ +import FcrsTable from '@/components/pages/master-data/fcr/FcrsTable'; + +const Fcr = () => { + return ( +
+ +
+ ); +}; + +export default Fcr;