added data table

This commit is contained in:
2025-07-15 14:37:09 -04:00
parent 3a2b20e468
commit 049def6886
8 changed files with 299 additions and 35 deletions

View File

@@ -0,0 +1,13 @@
import LocationsTable from '@/components/tables/LocationsTable'
import { queries } from '@/lib/queries'
import React from 'react'
export default async function LocationsPage() {
const eventLocations = await queries.fetchAllLocations()
return (
<div>
<LocationsTable eventLocations={eventLocations} />
</div>
)
}