7 lines
121 B
TypeScript
7 lines
121 B
TypeScript
'use client';
|
|
import { GoalReport } from './GoalsReport';
|
|
|
|
export function GoalReportPage() {
|
|
return <GoalReport />;
|
|
}
|