styled-components
styled-components 모듈 설치 npm install styled-componentsstyled-components란? 컴포넌트 마다 css, Sass 파일들을 각자 만들어서 관리하는 것이 아니라, 컴포넌트 파일 내에서 style을 지정하고 적용 가능하게 하는 라이브러리이다. 리액트의 CSS-in_JS 관련 라이브러리 중에서 가장 인기있는 라이브러리이기도 하다. 예시 코드를 보면서 이해해본다. 먼저 style 관련 코드를 작성해보았다. // style 관련 코드 import React from 'react'; import styled, {css} from 'styled-components'; const Box = styled.div` /* props로 넣어준 값을 ..
Programming/React
2019. 8. 30. 18:41