umami/src/app/(main)/reports/goals/page.tsx
2024-05-05 22:15:47 -07:00

10 lines
209 B
TypeScript

import GoalsReportPage from './GoalsReportPage';
import { Metadata } from 'next';
export default function () {
return <GoalsReportPage />;
}
export const metadata: Metadata = {
title: 'Goals Report',
};