import React from 'react'; import PropTypes from 'prop-types'; import { Trans, withTranslation } from 'react-i18next'; import { COMMENT_LINE_DEFAULT_TOKEN } from '../../../../helpers/constants'; const Examples = (props) => (
examples_title:
  1. 94.140.14.140, 2a10:50c0::1:ff: {props.t('example_upstream_regular')}
  2. 94.140.14.140:53, [2a10:50c0::1:ff]:53: {props.t('example_upstream_regular_port')}
  3. udp://unfiltered.adguard-dns.com: example_upstream_udp
  4. tcp://94.140.14.140, tcp://[2a10:50c0::1:ff]: example_upstream_tcp
  5. tcp://94.140.14.140:53, tcp://[2a10:50c0::1:ff]:53: example_upstream_tcp_port
  6. tcp://unfiltered.adguard-dns.com: example_upstream_tcp_hostname
  7. tls://unfiltered.adguard-dns.com: DNS-over-TLS , ]} > example_upstream_dot
  8. https://unfiltered.adguard-dns.com/dns-query: DNS-over-HTTPS , ]} > example_upstream_doh
  9. h3://unfiltered.adguard-dns.com/dns-query: HTTP/3 , ]} > example_upstream_doh3
  10. quic://unfiltered.adguard-dns.com: DNS-over-QUIC , ]} > example_upstream_doq
  11. sdns://...: DNS Stamps , DNSCrypt , DNS-over-HTTPS , ]} > example_upstream_sdns
  12. [/example.local/]94.140.14.140: Link , ]} > example_upstream_reserved
  13. {COMMENT_LINE_DEFAULT_TOKEN} comment: example_upstream_comment
); Examples.propTypes = { t: PropTypes.func.isRequired, }; export default withTranslation()(Examples);