2024-02-12 08:58:57 +08:00
|
|
|
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;
|
2023-09-26 14:33:01 +08:00
|
|
|
|
|
|
|
const Chat = () => {
|
|
|
|
return (
|
2024-02-12 08:58:57 +08:00
|
|
|
<View>
|
|
|
|
<Image
|
|
|
|
style={{ width: width, height: height - 60, resizeMode: "cover" }}
|
|
|
|
source={coming}
|
|
|
|
/>
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
};
|
2023-09-26 14:33:01 +08:00
|
|
|
|
2024-02-12 08:58:57 +08:00
|
|
|
export default Chat;
|