styled-components 는 현존하는 CSS in JS 관련 리액트 라이브러리 중에서 가장 인기 있는 라이브러리이다.
이에 대한 대안으로는 emotion 와 styled-jsx가 있다.
npm install styled-components
위에 설치된 styled-components패키지에서 styled함수를 import한다.
const divStyle = {
backgroundColor: "black",
width: "100px",
height: "100px",
};
return
const StyledDiv = styled.div
background-color: black; width: 100px; height: 100px;
;
return