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-09 19:59
250x250
관리 메뉴

꿈꾸는 개발자의 블로그

[React] styled-components props 값 넘겨 받기 본문

Programming/React

[React] styled-components props 값 넘겨 받기

aldrn29 2022. 6. 16. 03:33

아래 예시는 간단한 버튼 배경 색상을 바꾸는 코드이지만, 이를 잘 활용하면 다양한 곳에 편리하게 사용할 수 있을 것 같다!

 


  

styled-components props 값 넘겨 받기

import styled from "styled-components";

export const Test = () => {
    return (
        <div>
           <Button theme>버튼</Button>	// theme를 props로 전달
        </div>
    );
}

const Button = styled.button`
    background-color: ${(props) => props.theme};
`;

 

 

728x90
728x90
Comments