Files
imexmobile/components/screen-job-detail/screen-job-detail.component.jsx

11 lines
233 B
JavaScript

import React from "react";
import { View, Text } from "react-native";
export default function ScreenJobDetail({ navigation, ...restProps }) {
return (
<View>
<Text>The is the detail of the job.</Text>
</View>
);
}