19 lines
445 B
JavaScript
19 lines
445 B
JavaScript
import React from "react";
|
|
import { Dimensions, Image, Text, View } from "react-native";
|
|
import coming from "../.././../assets/comingsoon.png";
|
|
const height = Dimensions.get("window").height;
|
|
const width = Dimensions.get("window").width;
|
|
|
|
const Chat = () => {
|
|
return (
|
|
<View>
|
|
<Image
|
|
style={{ width: width, height: height - 60, resizeMode: "cover" }}
|
|
source={coming}
|
|
/>
|
|
</View>
|
|
);
|
|
};
|
|
|
|
export default Chat;
|