import EventDashboard from '@/components/events/EventDashboard' import { queries } from '@/lib/queries' import React from 'react' export default async function SingleEventPage({ params }: { params: { eventId: string }}) { const data = await queries.singleEvent(params.eventId) return ( <> {/*
{data ? ( // @ts-ignore ) : (

Event not found.

)}
*/} ) }