From f89236bb5e84e2bbfb53111a320e0544a1320211 Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Thu, 8 Jan 2026 09:38:32 +0700 Subject: [PATCH] feat: create Daily Checklist Report page --- src/app/daily-checklist/reports/page.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/app/daily-checklist/reports/page.tsx diff --git a/src/app/daily-checklist/reports/page.tsx b/src/app/daily-checklist/reports/page.tsx new file mode 100644 index 00000000..fb9cd5b0 --- /dev/null +++ b/src/app/daily-checklist/reports/page.tsx @@ -0,0 +1,11 @@ +import { DailyChecklistReportsContent } from '@/figma-make/components/pages/reports/DailyChecklistReportsContent'; + +const DailyChecklistReportsPage = () => { + return ( +
+ +
+ ); +}; + +export default DailyChecklistReportsPage;