import React from "react"; import FontAwesome from "@expo/vector-icons/FontAwesome"; import { Tabs } from "expo-router"; import { useColorScheme } from "@/components/useColorScheme"; import Colors from "@/constants/Colors"; function TabBarIcon(props: { name: React.ComponentProps["name"]; color: string; }) { return ; } export default function TabLayout() { const colorScheme = useColorScheme(); return ( ( ), }} /> , }} /> , }} /> ); }