mirror of
https://github.com/umami-software/umami.git
synced 2026-02-09 23:27:12 +01:00
10 lines
226 B
TypeScript
10 lines
226 B
TypeScript
import { Metadata } from 'next';
|
|
import EventDataReportPage from './EventDataReportPage';
|
|
|
|
export default function () {
|
|
return <EventDataReportPage />;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Event Data Report',
|
|
};
|