import React from 'react'; import styled from 'styled-components'; const Recaptcha = styled.div` display: flex; margin: 54px 0 16px; `; const ReCaptcha = () => { if (process.env.NODE_ENV !== 'production') { return null; } return ( ); }; export default ReCaptcha;