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

11 lines
202 B
JavaScript

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