import { Text, View } from "react-native"; import { useT } from "@/lib/i18n"; import type { MapProps } from "@/components/map"; // react-native-maps does not support web. This stub keeps the web bundle // working for local testing; use a native build for real map functionality. export const Map = (_props: MapProps = {}) => { const t = useT(); return ( {t("components.map.webUnavailable")} ); };