import * as TabsPrimitive from '@radix-ui/react-tabs'; import { cn } from '@/lib/utils'; const Tabs = TabsPrimitive.Root; function TabsList({ className, ref, ...props }) { return ( ); } function TabsTrigger({ className, ref, ...props }) { return ( ); } function TabsContent({ className, ref, ...props }) { return ( ); } export { Tabs, TabsList, TabsTrigger, TabsContent };