11 lines
241 B
TypeScript
11 lines
241 B
TypeScript
import { Metadata } from 'next';
|
|
import EventDataReport from './EventDataReport';
|
|
|
|
export default function EventDataReportPage() {
|
|
return <EventDataReport />;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Event Data Report | Umami',
|
|
};
|