Added navigation to application, internationalization, and sign in screen.
This commit is contained in:
12
components/screen-job-list/screen-job-list.component.jsx
Normal file
12
components/screen-job-list/screen-job-list.component.jsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user