mirror of
https://github.com/umami-software/umami.git
synced 2026-02-17 11:05:36 +01:00
6 lines
161 B
TypeScript
6 lines
161 B
TypeScript
'use client';
|
|
import ReportDetails from './ReportDetails';
|
|
|
|
export default function ReportPage({ reportId }) {
|
|
return <ReportDetails reportId={reportId} />;
|
|
}
|