diff --git a/app/(root)/(tabs)/chat.tsx b/app/(root)/(tabs)/chat.tsx index 16d0727..54c9be7 100644 --- a/app/(root)/(tabs)/chat.tsx +++ b/app/(root)/(tabs)/chat.tsx @@ -1,10 +1,28 @@ -import { Text } from "react-native"; +import { Image, ScrollView, Text, View } from "react-native"; import { SafeAreaView } from "react-native-safe-area-context"; +import { images } from "@/constants"; + const Chat = () => { return ( - - Chat + + + Chat + + message + + No Messages Yet + + + Start a conversation with your friends and family + + + ); };