import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "@/components/ui/card"; import { api } from "@/utils/api"; import { FolderUp } from "lucide-react"; import { AddDestination } from "./add-destination"; import { UpdateDestination } from "./update-destination"; import { DeleteDestination } from "./delete-destination"; export const ShowDestinations = () => { const { data } = api.destination.all.useQuery(); return (