From da5a2324c6dc01e4c89d3281f6fc1f6c0343f61c Mon Sep 17 00:00:00 2001 From: Maximilian Liebmann Date: Sun, 11 May 2025 13:30:26 +0200 Subject: [PATCH] style: standardize quotes and formatting in Tabs component --- src/components/ui/tabs.tsx | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/src/components/ui/tabs.tsx b/src/components/ui/tabs.tsx index 497ba5e..4a9fbd0 100644 --- a/src/components/ui/tabs.tsx +++ b/src/components/ui/tabs.tsx @@ -1,9 +1,9 @@ -"use client" +'use client'; -import * as React from "react" -import * as TabsPrimitive from "@radix-ui/react-tabs" +import * as React from 'react'; +import * as TabsPrimitive from '@radix-ui/react-tabs'; -import { cn } from "@/lib/utils" +import { cn } from '@/lib/utils'; function Tabs({ className, @@ -11,11 +11,11 @@ function Tabs({ }: React.ComponentProps) { return ( - ) + ); } function TabsList({ @@ -24,14 +24,14 @@ function TabsList({ }: React.ComponentProps) { return ( - ) + ); } function TabsTrigger({ @@ -40,14 +40,14 @@ function TabsTrigger({ }: React.ComponentProps) { return ( - ) + ); } function TabsContent({ @@ -56,11 +56,11 @@ function TabsContent({ }: React.ComponentProps) { return ( - ) + ); } -export { Tabs, TabsList, TabsTrigger, TabsContent } +export { Tabs, TabsList, TabsTrigger, TabsContent };