18 lines
451 B
TypeScript

'use client'
import React from 'react';
import FullEventGallery from '@/components/gallery/FullEventGallery';
import { useSearchParams } from 'next/navigation';
const EventGalleryFullPage = () => {
const searchParams = useSearchParams();
const eventId = searchParams.get('eventid');
return (
<div className="py-8">
<FullEventGallery eventId={eventId} />
</div>
);
};
export default EventGalleryFullPage;