import { TextClassContext } from '@/components/ui/text'; import { cn } from '@/lib/utils'; import * as TabsPrimitive from '@rn-primitives/tabs'; import { Platform } from 'react-native'; function Tabs({ className, ...props }: React.ComponentProps) { return ; } function TabsList({ className, ...props }: React.ComponentProps) { return ( ); } function TabsTrigger({ className, ...props }: React.ComponentProps) { const { value } = TabsPrimitive.useRootContext(); return ( ); } function TabsContent({ className, ...props }: React.ComponentProps) { return ( ); } export { Tabs, TabsContent, TabsList, TabsTrigger };