From 80d9dd689aee74cf0a8ac715960237fa26734e4a Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Tue, 27 Jan 2026 16:53:04 +0700 Subject: [PATCH] feat: add TransferToLayingDetailModal component 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 048ae005..5d790345 100644 --- a/src/app/production/transfer-to-laying/page.tsx +++ b/src/app/production/transfer-to-laying/page.tsx @@ -1,5 +1,6 @@ import TransferToLayingsTable from '@/components/pages/production/transfer-to-laying/TransferToLayingsTable'; import TransferToLayingFormModal from '@/components/pages/production/transfer-to-laying/TransferToLayingFormModal'; +import TransferToLayingDetailModal from '@/components/pages/production/transfer-to-laying/TransferToLayingDetailModal'; const TransferToLaying = () => { return ( @@ -7,6 +8,8 @@ const TransferToLaying = () => { + + ); };