Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- KDT 프로그래머스 데브코스 프론트엔드
- 고양이 사진 검색기
- 리액트
- KDT 프로그래머스
- netlify redirect
- vue mixin
- react next
- git 같은계정 다른 컴퓨터
- Vue
- intersection opserver
- 다른컴퓨터에서 git사용
- 쌓임맥락
- vuex map
- flex
- Spacer
- SCSS import
- 리스트 렌더링
- nextjs사용법
- vue 이벤트 수신
- 폼 입력 바인딩
- 이벤트 수식어
- SCSS extend
- postcss
- SCSS use
- 프로그래머스 프론트엔드 데브코스
- 프로그래머스 데브코스 프론트엔드
- 프로그래머스 데브코스
- 프로그래머스 K_Digital Training
- SCSS forward
- vue 지역 컴포넌트
Archives
- Today
- Total
혼자 적어보는 노트
[React] styled-component 본문
styled-components
styled-components는 CSS 파일이 아닌 JavaScript로 작성된 컴포넌트에
스타일을 바로 삽입하는 CSS in JS 라이브러리 중 하나이다.
개인적으로 css파일을 따로 작성하는 것을 선호하기 때문에 사용을 잘 안했으나
알고는 있어야 할 듯 하여 간단하게 정리를 하였다.
설치
npm i styled-components
사용 시 import
import styled from "styled-components";
일반 태그에 적용하는 법
적용 전
const App = () => {
return (
<>
<div>Styled-components</div>
</>
);
};
적용 후
const MainBox = styled.div`
padding: 10px;
font-size: 16px;
`;
const App = () => {
return (
<>
<MainBox>Styled-components</MainBox>
</>
);
};
컴포넌트에 적용하는 법
적용 전
const App = () => {
return (
<>
<MenuList />
</>
);
};
적용 후
const MenuListBox = styled(MenuList)`
padding: 10px;
`;
const App = () => {
return (
<>
<MenuListBox />
</>
);
};
stlyed를 적용할 이름을 만들어주고 styled(컴포넌트명)과 함께 작성한다.
* 컴포넌트가 많아지면 이름 짓기가 좀 불편하다.
전역으로 style 지정하는 법
* 클래스명이 지정되어있는 스타일을 수정하거나 라이브러리에 있는 css수정 등에 유용
import styled, { createGlobalStyle } from "styled-components";
const Global = createGlobalStyle`
.menu-list{ // class명을 지정해서 넣을 수 있다.
padding:20px;
}`;
const App = () => {
return (
<>
<Global /> // 사용할 컴포넌트에 추가
<MenuListBox />
</>
);
};
해당 태그 내부의 태그 css수정
const MainBox = styled.div`
padding: 10px;
font-size: 16px;
&button{
font-size: 20px;
}
`;
const App = () => {
return (
<>
<MainBox>
<button>버튼</button>
</MainBox>
</>
);
};
css 내부에 함수 적용
Tagged Template Literals을 사용하기 때문에 함수를 문자열 안에 포함시킬 수 있다.
import React from "react";
import styled from "styled-components";
const MainBox = styled.div`
padding: 10px;
font-size: 16px;
&button{
color: ${(props) => props.color || "black"};
}
`;
const App = (props) => {
return (
<>
<MainBox>
<button>버튼</button>
</MainBox>
</>
);
};
컴포넌트를 활용한 사용예시
동일한 스타일을 지닌 버튼컴포넌트를 만들어 놓고
props로 추가적인 스타일을 전달해주어 재사용을 하는 방식이다.
import Button from "./Button";
const App = (props) => {
return (
<div>
<Button color="white" background="blue">버튼</Button>
</div>
);
};
[Button.js]
import React from "react";
import styled from "styled-components";
const StyledButton = styled.button`
padding: 20px;
border-radius: 10px;
color: ${(props) => props.color || "black"};
background: ${(props) => props.background || "white"};
`;
function Button({ children, ...props }) {
return <StyledButton {...props}>{children}</StyledButton>;
}
참고:
'React' 카테고리의 다른 글
[React] create-react-app 없이 react 개발환경 세팅 해보기 (0) | 2022.03.09 |
---|---|
[React] 정규표현식을 이용하여 텍스트 안에서 해시태그 분리하기 (0) | 2022.03.06 |
[React] input type="file" 커스터마이징 하기 (0) | 2022.03.03 |
[React] 영역 밖 클릭시 이벤트 / 모달 닫기 (0) | 2022.02.24 |
[React] 활성화된 input focus 해제 / blur() (0) | 2022.01.17 |
Comments