boxons/app/(tabs)/_layout.tsx

16 lines
298 B
TypeScript
Raw Permalink Normal View History

2025-03-03 22:10:26 +00:00
import { Tabs } from 'expo-router';
import { i18n } from '../i18n/i18n';
export default function TabLayout() {
return (
<Tabs>
<Tabs.Screen
name="index"
options={{
title: i18n.t('appTitle'),
headerShown: false,
}}
/>
</Tabs>
);
}