설치하기 # with npm $ npm install --save styled-components # with yarn $ yarn add styled-components packje.json에 아래 코드 추가하기. { "resolutions": { "styled-components": "^5" } } 불러오기 import styled from "styled-components" 기본사용법 백틱 사용 //임포트를 해주고 import styled from "styled-components"; //컴포넌트를 만들고 //styled.태그종류 const MainButton = styled.button` background-color: red; color: white; &:hover{ background: yel..