Files
AdGuardHome/client_v2/src/components/Logs/AnonymizerNotification.tsx
Ildar Kamalov 66f5e215b4 ADG-10291
2025-07-21 17:21:10 +03:00

22 lines
533 B
TypeScript

import React from 'react';
import { Trans } from 'react-i18next';
import { HashLink as Link } from 'react-router-hash-link';
const AnonymizerNotification = () => (
<div className="alert alert-primary mt-6">
<Trans
components={[
<strong key="0">text</strong>,
<Link to="/settings#logs-config" key="1">
link
</Link>,
]}>
anonymizer_notification
</Trans>
</div>
);
export default AnonymizerNotification;