basic layout created and welcome onboarding screen implemented

This commit is contained in:
Sanidhya Kumar Verma
2024-08-29 08:29:58 +00:00
committed by GitHub
parent a72a83ebe3
commit 77030fd4c2
16 changed files with 481 additions and 12 deletions
+12
View File
@@ -0,0 +1,12 @@
import { Text } from "react-native";
import { SafeAreaView } from "react-native-safe-area-context";
const Chat = () => {
return (
<SafeAreaView>
<Text>Chat</Text>
</SafeAreaView>
);
};
export default Chat;