import type { ReactNode } from 'react' import { useTranslation } from 'react-i18next' /** Section chrome for the RSS column: feed items and article cards backed by subscribed feeds. */ export function RssUnifiedScopeSection({ children }: { children: ReactNode }) { const { t } = useTranslation() return (

{t('RSS feed column title')}

{t('RSS feed column subtitle')}

{children}
) }