added vendors table

This commit is contained in:
2026-01-27 12:23:59 -05:00
parent ecd7182153
commit 3aa9b6f325
20 changed files with 1058 additions and 5 deletions

13
app/(auth)/vendors/page.tsx vendored Normal file
View File

@@ -0,0 +1,13 @@
import VendorsTable from '@/components/tables/VendorsTable'
import { queries } from '@/lib/queries'
import React from 'react'
export default async function VendorPage() {
const vendors = await queries.fetchAllVendors()
return (
<div>
<VendorsTable initialVendors={vendors} />
</div>
)
}