umami/src/app/(main)/reports/[reportId]/ReportPage.tsx

7 lines
161 B
TypeScript
Raw Normal View History

2024-02-06 08:38:33 +00:00
'use client';
import ReportDetails from './ReportDetails';
2024-02-06 08:38:33 +00:00
export default function ReportPage({ reportId }) {
return <ReportDetails reportId={reportId} />;
2023-05-18 06:20:06 +00:00
}