"use client"; import { cn } from "@/lib/utils"; import { motion } from "framer-motion"; import React, { useState } from "react"; export default function TabSwitch({ tabs, currentTab, setCurrentTab, }: { tabs: string[]; currentTab: string; setCurrentTab: (tab: string) => void; }) { return (
{tab}