- 이전 과제에서 작성한 SCSS 코드를 Styled-Components를 사용하여 리팩토링할 수 있다.
- Styled-Components을 사용하는 방법에 대해 이해한다.
- Styled-Components를 사용하는 경우의 장단점에 대해 이해한다.
- Styled-Components를 재사용 하는 방법에 대해 알고있다.
- Styled-Components에
props
를 전달하여 원하는 스타일을 지정할 수 있다.
- Styled-Components을 사용하는 방법에 대해 이해한다.
설명: Styled-Components을 사용하는 방법에 대해 복습하세요. - Styled-Components를 사용하는 경우의 장단점에 대해 이해한다.
설명: Styled-Components를 사용하는 경우의 장단점에 대해 복습하세요. - Styled-Components를 재사용 하는 방법에 대해 알고있다.
설명: Styled-Components를 재사용 하는 방법에 대해 복습하세요. - Styled-Components에
props
를 전달하여 원하는 스타일을 지정할 수 있다.
설명: Styled-Components에props
를 전달하여 원하는 스타일을 지정하는 방법에 대해 복습하세요.
npm install styled-components
를 터미널에 입력하여 설치합니다.npm install & npm run dev
를 터미널에 입력하여 서버를 실행합니다.import styled from "styled-components"
를 파일에 불러온 후 사용할 수 있습니다.App.scss
에 작성된 코드를 요소에 해당하는 컴포넌트와 같은 일에 파일을 생성하여 새롭게 작성해주세요.App.jsx
components/Content.jsx
components/Header.jsx
- css는 자유롭게 수정해도 좋습니다.