13 lines
342 B
JavaScript
13 lines
342 B
JavaScript
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>
|
|
);
|
|
}
|