import { db } from "~/server/db"; export default async function AllRegions() { const allRegions = await db.query.regions.findMany(); return (

All Regions:

{allRegions[0] ? ( <> ) : (

There are no regions in the db.

)}
); }