import LocationBoxRaw from "@/components/LocationPreview/LocationBoxRaw"; import { HiOutlineMapPin, HiCheckBadge, HiOutlineUsers } from "react-icons/hi2"; type LocationContainerProps = { address: string; geohash: string; }; export default function LocationContainer({ address, geohash, }: LocationContainerProps) { return (

Location

{address}

); }