Files
umami/src/app/(main)/reports/insights/page.tsx
T
2024-02-02 17:49:17 -08:00

11 lines
235 B
TypeScript

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