Added navigation to application, internationalization, and sign in screen.

This commit is contained in:
Patrick Fic
2020-08-11 16:42:26 -07:00
parent c7344dd7a2
commit 767233cea3
19 changed files with 1258 additions and 161 deletions

View File

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