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