import { Delete } from "lucide-react"; import { deleteCountry } from "~/server/actions/deleteCountry"; import { db } from "~/server/db"; export default async function AllCountries() { const countries = await db.query.countries.findMany(); return (

All Countries:

{countries.map((country) => (

{country.name}

))}
); }