import type { ReactNode } from 'react' import { useTranslation } from 'react-i18next' /** Section chrome for the article-URL card list (Nostr threads + merged RSS by URL). */ export function ArticleUrlsSection({ children, subtitleKey = 'Article URLs subtitle' }: { children: ReactNode /** `Article URLs Nostr manual subtitle` when the URLs toggle hides RSS-only URL groups. */ subtitleKey?: string }) { const { t } = useTranslation() return (

{t('Article URLs')}

{t(subtitleKey)}

{children}
) }