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,12 @@
import React from "react";
import { View, Text } from "react-native";
import { useTranslation } from "react-i18next";
export default function ScreenJobList({ navigation }) {
const { t } = useTranslation();
return (
<View>
<Text>This is the Job List.</Text>
<Text>{t("joblist.labels.activejobs")}</Text>
</View>
);
}