diff --git a/app/(root)/(tabs)/_layout.tsx b/app/(root)/(tabs)/_layout.tsx index e69de29..b3e2e21 100644 --- a/app/(root)/(tabs)/_layout.tsx +++ b/app/(root)/(tabs)/_layout.tsx @@ -0,0 +1,100 @@ +import { icons } from "@/constants"; +import { Tabs } from "expo-router"; +import { Image, type ImageSourcePropType, View } from "react-native"; + +const TabIcon = ({ + source, + focused, + alt, +}: { + source: ImageSourcePropType; + alt: string; + focused: boolean; +}) => ( + + + {alt} + + +); + +const TabsLayout = () => ( + + ( + + ), + }} + /> + + ( + + ), + }} + /> + + ( + + ), + }} + /> + + ( + + ), + }} + /> + +); + +export default TabsLayout;