forked from Rockachopa/Timmy-time-dashboard
18 lines
365 B
TypeScript
18 lines
365 B
TypeScript
|
|
import { Tabs } from "expo-router";
|
||
|
|
import { useColors } from "@/hooks/use-colors";
|
||
|
|
|
||
|
|
export default function TabLayout() {
|
||
|
|
const colors = useColors();
|
||
|
|
|
||
|
|
return (
|
||
|
|
<Tabs
|
||
|
|
screenOptions={{
|
||
|
|
headerShown: false,
|
||
|
|
tabBarStyle: { display: "none" },
|
||
|
|
}}
|
||
|
|
>
|
||
|
|
<Tabs.Screen name="index" options={{ title: "Chat" }} />
|
||
|
|
</Tabs>
|
||
|
|
);
|
||
|
|
}
|