'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 (
); }; export default EventGalleryFullPage;