Files
imexmobile/components/screen-messaging-conversation/screen-messaging-conversation.component.jsx

11 lines
227 B
JavaScript

import React from "react";
import { View, Text } from "react-native";
export default function ScreenMessagingConversation({ navigation }) {
return (
<View>
<Text>The detailed conversation</Text>
</View>
);
}