React 라이브러리 중 스타일을 가진 컴포넌트를 만들 수록 도와주는 CSS-in-JS 라이브러리이다. 문구 그대로 JS 안에 CSS 를 작성하는 것을 의미한다.
npm install --save styled-components
import styled from "styled-components"
render(
<Wrapper>
<Title>
Hello World!
</Title>
</Wrapper>
);
const Title = styled.h1`
font-size: 1.5em;
text-align: center;
color: palevioletred;
`;
const Wrapper = styled.section`
padding: 4em;
background: papayawhip;
`;
styled-componets
패키지에서 styled
를 import 시켜준다.