umami/src/app/(main)/reports/goals/page.tsx

11 lines
209 B
TypeScript
Raw Normal View History

2024-05-06 05:15:47 +00:00
import GoalsReportPage from './GoalsReportPage';
import { Metadata } from 'next';
export default function () {
return <GoalsReportPage />;
}
export const metadata: Metadata = {
title: 'Goals Report',
};