꿈꾸는 개발자의 블로그
[React] styled-components props 값 넘겨 받기 본문
아래 예시는 간단한 버튼 배경 색상을 바꾸는 코드이지만, 이를 잘 활용하면 다양한 곳에 편리하게 사용할 수 있을 것 같다!
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
'Programming > React' 카테고리의 다른 글
[React] Mui styled-components 설치 및 구현 방법 (0) | 2022.06.18 |
---|---|
[React] TypeScript + 객체 값 순회하기 (0) | 2022.06.16 |
[React] styled-components 사용하기 (0) | 2022.06.14 |
[React] Chart.js로 Doughnut(도넛) 차트 그리기 (0) | 2022.05.23 |
[React] .env 파일 환경변수 설정하기 (0) | 2022.05.22 |
Comments