꿈꾸는 개발자의 블로그
[React] styled-components 사용하기 본문
그동안 각각의 CSS 파일을 밖에 두고 스타일링 했었는데, 하나의 컴포넌트 내에서 이용가능한 styld-components를 사용해보았다. 불필요한 CSS가 import 되지 않도록 만들어주기 때문에 좋다!
styled-components 설치
yarn add styled-components
styled-components를 이용한 구현
import styled from 'styled-components';
export const Test = () => {
render (
<Wrapper>
<Button>버튼</Button>
</Wrapper>
);
}
const Wrapper = styled.div`
width: 100%;
height: 100vh;
`;
const Button = styled.button`
background-color: gray;
border-radius: 3px;
`;
공식 문서
https://styled-components.com/
728x90
728x90
'Programming > React' 카테고리의 다른 글
[React] TypeScript + 객체 값 순회하기 (0) | 2022.06.16 |
---|---|
[React] styled-components props 값 넘겨 받기 (0) | 2022.06.16 |
[React] Chart.js로 Doughnut(도넛) 차트 그리기 (0) | 2022.05.23 |
[React] .env 파일 환경변수 설정하기 (0) | 2022.05.22 |
[React] AWS S3 이미지 파일 업로드 하기 (0) | 2022.05.22 |
Comments