feat: add TransferToLayingDetailModal component in Transfer to Laying page

This commit is contained in:
ValdiANS
2026-01-27 16:53:04 +07:00
parent 0d1907f729
commit 80d9dd689a
@@ -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 = () => {
<TransferToLayingsTable />
<TransferToLayingFormModal />
<TransferToLayingDetailModal />
</section>
);
};