Files
imexmobile/components/screen-messaging-conversation/screen-messaging-conversation.component.js
2022-01-12 14:22:13 -08:00

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>
);
}