10 lines
312 B
TypeScript
10 lines
312 B
TypeScript
import { Stack } from "expo-router";
|
|
|
|
export default function AssignmentLayout() {
|
|
return (
|
|
<Stack>
|
|
<Stack.Screen name="upsertAssignment" options={{ title: 'Create/Edit Assignment' }} />
|
|
<Stack.Screen name="viewDetailsAssignment" options={{ title: "Assignment Details" }} />
|
|
</Stack>
|
|
);
|
|
} |