From f0051b58bb9d47686229862ffbbaf8eec02cbdaa Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Sat, 24 Jan 2026 11:18:52 +0700 Subject: [PATCH] feat: add TransferToLayingFormModal in Transfer To Laying page --- src/app/production/transfer-to-laying/page.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/app/production/transfer-to-laying/page.tsx b/src/app/production/transfer-to-laying/page.tsx index 1555dc38..048ae005 100644 --- a/src/app/production/transfer-to-laying/page.tsx +++ b/src/app/production/transfer-to-laying/page.tsx @@ -1,9 +1,12 @@ import TransferToLayingsTable from '@/components/pages/production/transfer-to-laying/TransferToLayingsTable'; +import TransferToLayingFormModal from '@/components/pages/production/transfer-to-laying/TransferToLayingFormModal'; const TransferToLaying = () => { return (
+ +
); };