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

11 lines
204 B
JavaScript

import React from "react";
import { View, Text } from "react-native";
export default function ScreenMessagingList() {
return (
<View>
<Text>A list of conversations.</Text>
</View>
);
}