umami/src/app/(main)/teams/[teamId]/reports/create/page.tsx

11 lines
242 B
TypeScript
Raw Normal View History

2024-01-30 08:10:25 +00:00
import { Metadata } from 'next';
import ReportTemplates from 'app/(main)/reports/create/ReportTemplates';
export default function () {
return <ReportTemplates />;
}
export const metadata: Metadata = {
title: 'Create Report | umami',
};