Notice
Recent Posts
Recent Comments
Archives
반응형
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Today
Total
01-24 17:03
250x250
관리 메뉴

꿈꾸는 개발자의 블로그

[React] styled-components 사용하기 본문

Programming/React

[React] styled-components 사용하기

aldrn29 2022. 6. 14. 23:39

그동안 각각의 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/

 

styled-components

Visual primitives for the component age. Use the best bits of ES6 and CSS to style your apps without stress 💅🏾

styled-components.com

 

728x90
728x90
Comments