프론트엔드 웹/React

이메일(e-mail)로 연결하는 a tag

세리둥절 2022. 6. 28. 15:56
반응형
import styled from "@emotion/styled";

const Email = styled(p)`
  text-decoration: underline;
  color: blue;
`;



 <Email>
    <a href="mailto:mail@naver.com">{`mail@naver.com`}</a>
 </Email>

 

반응형