Files
umami/src/app/(main)/reports/insights/page.tsx
2025-02-13 22:53:25 -08:00

11 lines
225 B
TypeScript

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