From 9c2917a53f71920728abda4131eb37d3a178015b Mon Sep 17 00:00:00 2001 From: Francis Cao Date: Sun, 26 May 2024 22:49:22 -0700 Subject: [PATCH] add goals page for teams --- src/app/(main)/teams/[teamId]/reports/goals/page.tsx | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 src/app/(main)/teams/[teamId]/reports/goals/page.tsx diff --git a/src/app/(main)/teams/[teamId]/reports/goals/page.tsx b/src/app/(main)/teams/[teamId]/reports/goals/page.tsx new file mode 100644 index 00000000..34aab933 --- /dev/null +++ b/src/app/(main)/teams/[teamId]/reports/goals/page.tsx @@ -0,0 +1,3 @@ +import Page from 'app/(main)/reports/goals/page'; + +export default Page;