2024-02-06 08:38:33 +00:00
|
|
|
'use client';
|
|
|
|
|
import ReportDetails from './ReportDetails';
|
2023-05-29 04:37:34 +00:00
|
|
|
|
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
|
|
|
}
|