styled-components를 굳이 사용해야 한다면 지켜야 할 룰에 대해서 정리해본다. props 전달 방법 const Box = styled.div` background-color: ${props=>props.bgColor}; `; function App(){ return( ) }; 2. 확장 방법 const Box = styled.div` background-color: ${props=>props.bgColor}; `; const Circle = styled(Box)` ...
(추가 css) `; function App(){ return( ) };...
#
adapting
#
extending
#
props
#
react
#
styledcomponent