umami/src/app/(main)/reports/create/page.tsx

11 lines
235 B
TypeScript
Raw Normal View History

2023-09-29 12:29:22 +00:00
import ReportTemplates from './ReportTemplates';
import { Metadata } from 'next';
export default function ReportsCreatePage() {
return <ReportTemplates />;
}
export const metadata: Metadata = {
title: 'Create Report | umami',
};