umami/src/app/(app)/reports/insights/page.tsx

11 lines
233 B
TypeScript
Raw Normal View History

2023-09-29 12:29:22 +00:00
import InsightsReport from './InsightsReport';
import { Metadata } from 'next';
export default function () {
return <InsightsReport reportId={null} />;
}
export const metadata: Metadata = {
title: 'Insights Report | umami',
};