mirror of
https://github.com/umami-software/umami.git
synced 2026-02-21 21:15:35 +01:00
10 lines
235 B
TypeScript
10 lines
235 B
TypeScript
import ReportTemplates from './ReportTemplates';
|
|
import { Metadata } from 'next';
|
|
|
|
export default function ReportsCreatePage() {
|
|
return <ReportTemplates />;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Create Report | umami',
|
|
};
|