From 561a9fe186b2fafed50744d23e9c4202925fb33d Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Thu, 8 Jan 2026 09:37:35 +0700 Subject: [PATCH] feat: add layout file for detail of daily checklist list page --- .../list-daily-checklist/detail/layout.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/app/daily-checklist/list-daily-checklist/detail/layout.tsx diff --git a/src/app/daily-checklist/list-daily-checklist/detail/layout.tsx b/src/app/daily-checklist/list-daily-checklist/detail/layout.tsx new file mode 100644 index 00000000..7220dfa1 --- /dev/null +++ b/src/app/daily-checklist/list-daily-checklist/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;