19 lines
425 B
TypeScript
19 lines
425 B
TypeScript
import { EventDetail } from '@/components/event-detail';
|
|
|
|
interface EventPageProps {
|
|
params: Promise<{
|
|
eventId: string;
|
|
}>;
|
|
}
|
|
|
|
export default async function EventPage({ params }: EventPageProps) {
|
|
const { eventId } = await params;
|
|
|
|
return (
|
|
<div className="min-h-screen bg-gray-50 py-8">
|
|
<div className="max-w-7xl mx-auto px-4">
|
|
<EventDetail eventId={eventId} />
|
|
</div>
|
|
</div>
|
|
);
|
|
} |