miinventario-mobile-v2/src/app/credits/_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

24 lines
520 B
TypeScript

import { Stack } from 'expo-router';
export default function CreditsLayout() {
return (
<Stack
screenOptions={{
headerStyle: { backgroundColor: '#fff' },
headerTintColor: '#1a1a1a',
headerTitleStyle: { fontWeight: '600' },
headerShadowVisible: false,
}}
>
<Stack.Screen
name="buy"
options={{ title: 'Comprar Creditos' }}
/>
<Stack.Screen
name="history"
options={{ title: 'Historial' }}
/>
</Stack>
);
}