import { Image, ScrollView, Text, View } from "react-native"; import { SafeAreaView } from "react-native-safe-area-context"; import { images } from "@/constants"; import { useT } from "@/lib/i18n"; const Chat = () => { const t = useT(); return ( {t("chat.title")} {t("chat.messageAlt")} {t("chat.noMessages")} {t("chat.startConversation")} ); }; export default Chat;