umami/src/app/(app)/reports/insights/page.tsx
2023-09-29 20:19:27 -07:00

10 lines
251 B
TypeScript

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