ShortenerCaptcha.js 393 B

12345678910111213141516171819
  1. import React from 'react';
  2. import styled from 'styled-components';
  3. import config from '../../config';
  4. const Recaptcha = styled.div`
  5. display: block;
  6. margin: 32px 0;
  7. `;
  8. const ShortenerCaptcha = () => (
  9. <Recaptcha
  10. id="g-recaptcha"
  11. className="g-recaptcha"
  12. data-sitekey={config.RECAPTCHA_SITE_KEY}
  13. data-callback="recaptchaCallback"
  14. />
  15. );
  16. export default ShortenerCaptcha;