'use client'; import { useTranslation } from 'react-i18next'; import Header from '../Header'; import Footer from '../Footer'; import NewsPageClient from './NewsPageClient'; interface NewsPageWrapperProps { locale: string; initialData?: { articles: any[]; categories: string[]; } | null; } export default function NewsPageWrapper({ locale, initialData }: NewsPageWrapperProps) { const { t: tCommon } = useTranslation('common'); return (
{}} // 这里不需要动态改变语言,由路由控制 translations={tCommon} locale={locale} />
); }