From 7fdbfe6dfb6191722051a8be4ef28865e606e291 Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Tue, 21 Oct 2025 14:56:58 +0700 Subject: [PATCH] feat(FE-113): create Add Transfer to Laying page --- src/app/production/transfer-to-laying/add/page.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/app/production/transfer-to-laying/add/page.tsx diff --git a/src/app/production/transfer-to-laying/add/page.tsx b/src/app/production/transfer-to-laying/add/page.tsx new file mode 100644 index 00000000..6f29085f --- /dev/null +++ b/src/app/production/transfer-to-laying/add/page.tsx @@ -0,0 +1,11 @@ +import TransferToLayingForm from '@/components/pages/production/transfer-to-laying/form/TransferToLayingForm'; + +const AddTransferToLaying = () => { + return ( +
+ +
+ ); +}; + +export default AddTransferToLaying;