SumOfUs/Champaign

View on GitHub
app/javascript/components/ReCaptchaBranding.tsx

Summary

Maintainability
A
1 hr
Test Coverage
import * as React from 'react';
import { FormattedHTMLMessage } from 'react-intl';

const ReCaptchaBranding = props => {
  const className = props.className || 'ReCaptchaBranding';

  return (
    <p className={className}>
      <FormattedHTMLMessage
        id="recaptcha_branding_html"
        defaultMessage="This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply."
      />
    </p>
  );
};

export default ReCaptchaBranding;