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 (
{country.name}