19 lines
381 B
TypeScript
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;
|