24 lines
520 B
TypeScript
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>
|
|
);
|
|
}
|