umami/src/app/(main)/reports/create/ReportCreatePage.tsx
2024-02-05 23:59:33 -08:00

7 lines
141 B
TypeScript

'use client';
import ReportTemplates from './ReportTemplates';
export default function ReportCreatePage() {
return <ReportTemplates />;
}