venues and ui changes
This commit is contained in:
13
app/(auth)/venues/page.tsx
Normal file
13
app/(auth)/venues/page.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
import VenuesTable from '@/components/tables/VenuesTable'
|
||||
import { queries } from '@/lib/queries'
|
||||
import React from 'react'
|
||||
|
||||
export default async function LocationsPage() {
|
||||
const venues = await queries.fetchAllLocations()
|
||||
|
||||
return (
|
||||
<div>
|
||||
<VenuesTable eventLocations={venues} />
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user