'use client'; import { usePortalI18n } from '@/lib/i18n/provider'; const OPTIONS = [ { value: 'zh-CN', label: 'ZH' }, { value: 'en-US', label: 'EN' }, ] as const; export function LanguageSwitcher() { const { locale, setLocale } = usePortalI18n(); return (
Lang {OPTIONS.map((option) => ( ))}
); }