From d550dcbf4823538779014584e3c4b4d042d845ed Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Tue, 21 Oct 2025 14:57:32 +0700 Subject: [PATCH] feat(FE-141): create layout for detail Transfer to Laying route --- .../production/transfer-to-laying/detail/layout.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/app/production/transfer-to-laying/detail/layout.tsx diff --git a/src/app/production/transfer-to-laying/detail/layout.tsx b/src/app/production/transfer-to-laying/detail/layout.tsx new file mode 100644 index 00000000..7220dfa1 --- /dev/null +++ b/src/app/production/transfer-to-laying/detail/layout.tsx @@ -0,0 +1,11 @@ +import SuspenseHelper from '@/components/helper/SuspenseHelper'; + +const Layout = ({ + children, +}: Readonly<{ + children: React.ReactNode; +}>) => { + return {children}; +}; + +export default Layout;