"use client"; import { languages, type Locale } from "@/config/business"; import { cn } from "@/lib/utils"; export default function LanguageSwitcher({ locale, onLocaleChange }: { locale: Locale; onLocaleChange: (locale: Locale) => void }) { return (
{languages.map((language) => ( ))}
); }