11 lines
202 B
JavaScript
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>
|
|
);
|
|
}
|