mirror of
https://github.com/umami-software/umami.git
synced 2026-02-13 09:05:36 +01:00
10 lines
221 B
TypeScript
10 lines
221 B
TypeScript
import InsightsReportPage from './InsightsReportPage';
|
|
import { Metadata } from 'next';
|
|
|
|
export default function () {
|
|
return <InsightsReportPage />;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Insights Report',
|
|
};
|