miinventario-mobile-v2/src/app/validation/_layout.tsx
rckrdmrd eb718a95aa Sincronización desde miinventario/apps/mobile - Estándar multi-repo v2
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-16 08:29:24 -06:00

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>
);
}