import React from "react"; import { View, Text } from "react-native"; import { useTranslation } from "react-i18next"; export default function ScreenJobList({ navigation }) { const { t } = useTranslation(); return ( This is the Job List. {t("joblist.labels.activejobs")} ); }