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