notifications-section.tsx 324 B

12345678910111213141516
  1. import { useTranslation } from 'react-i18next'
  2. function NotificationsSection() {
  3. const { t } = useTranslation()
  4. return (
  5. <>
  6. <h3>{t('email_preferences')}</h3>
  7. <a href="/user/notification-preferences">
  8. {t('manage_email_preferences')}
  9. </a>
  10. </>
  11. )
  12. }
  13. export default NotificationsSection