Fixed exports.

This commit is contained in:
Mike Cao 2025-03-03 19:25:39 -08:00
parent 5682b4d217
commit aac1a12e51

View file

@ -1,6 +1,6 @@
'use client'; 'use client';
import { GoalReport } from './GoalsReport'; import { GoalsReport } from './GoalsReport';
export function GoalReportPage() { export function GoalsReportPage() {
return <GoalReport />; return <GoalsReport />;
} }