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

7 lines
141 B
TypeScript
Raw Normal View History

2024-02-06 07:59:33 +00:00
'use client';
import ReportTemplates from './ReportTemplates';
export default function ReportCreatePage() {
return <ReportTemplates />;
}