ComicMTL / frontend /app /view /_layout.tsx
BloodyInside's picture
firsty
947c08e
raw
history blame
533 Bytes
import { Tabs, Stack } from 'expo-router';
import React from 'react';
import {View, Text} from 'react-native';
import { TabBarIcon } from '@/components/navigation/TabBarIcon';
import { Colors } from '@/constants/Colors';
import { useColorScheme } from '@/hooks/useColorScheme';
import { SafeAreaView } from 'react-native-safe-area-context';
export default function TabLayout() {
const colorScheme = useColorScheme();
return (
<Stack
screenOptions={{
headerShown: false,
}}>
</Stack>
);
}