28 lines
539 B
TypeScript
28 lines
539 B
TypeScript
import { Stack } from 'expo-router';
|
|
|
|
export default function ValidationLayout() {
|
|
return (
|
|
<Stack
|
|
screenOptions={{
|
|
headerShown: true,
|
|
headerBackTitle: 'Atras',
|
|
}}
|
|
>
|
|
<Stack.Screen
|
|
name="items"
|
|
options={{
|
|
title: 'Validar Productos',
|
|
headerBackVisible: false,
|
|
}}
|
|
/>
|
|
<Stack.Screen
|
|
name="complete"
|
|
options={{
|
|
title: 'Validacion Completada',
|
|
headerBackVisible: false,
|
|
}}
|
|
/>
|
|
</Stack>
|
|
);
|
|
}
|