From 4e6d2088e1fbb5fbfeab107675c7041b4d1c15ef Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Tue, 21 Oct 2025 14:55:37 +0700 Subject: [PATCH] feat(FE-147): create Transfer to Laying list page --- src/app/production/transfer-to-laying/page.tsx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/app/production/transfer-to-laying/page.tsx diff --git a/src/app/production/transfer-to-laying/page.tsx b/src/app/production/transfer-to-laying/page.tsx new file mode 100644 index 00000000..40829c20 --- /dev/null +++ b/src/app/production/transfer-to-laying/page.tsx @@ -0,0 +1,16 @@ +import { Icon } from '@iconify/react'; +import Button from '@/components/Button'; + +const TransferToLaying = () => { + return ( +
+

Transfer to Laying

+ +
+ ); +}; + +export default TransferToLaying;