Files
imexmobile/app/jobs/_layout.tsx
2025-10-07 15:35:03 -07:00

19 lines
381 B
TypeScript

import { Stack } from "expo-router";
function JobsStack() {
return (
<Stack
screenOptions={{
headerTitleStyle: {
fontWeight: "bold",
},
}}
>
<Stack.Screen name="index" options={{ title: "Active Jobs" }} />
<Stack.Screen name="[jobId]" options={{ title: "Job Details" }} />
</Stack>
);
}
export default JobsStack;