mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-31 02:00:07 +02:00

[SettingsPage] Split Misc Section GitOrigin-RevId: b6fc60c571dfaf3aec542f3df8dc826a0ba3ab58
14 lines
281 B
TypeScript
14 lines
281 B
TypeScript
import { useTranslation } from 'react-i18next'
|
|
|
|
function NewsletterSection() {
|
|
const { t } = useTranslation()
|
|
|
|
return (
|
|
<>
|
|
<h3>{t('newsletter')}</h3>
|
|
<a href="/user/email-preferences">{t('manage_newsletter')}</a>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default NewsletterSection
|