7 lines
140 B
TypeScript
7 lines
140 B
TypeScript
'use client';
|
|
import { EventDataReport } from './EventDataReport';
|
|
|
|
export function EventDataReportPage() {
|
|
return <EventDataReport />;
|
|
}
|