확장 프로그램 설치
yarn add styled-components
import styled from "styled-components";
const StBox = styled.div`
// css 문법으로 작성
width: 100px;
height: 100px;
border: 1px solid ${(props) => props.borderColor};
margin: 20px
`
import styled from "styled-components";
// styled-components를 사용하여 js로 css 문법 작성 가능
const StBox = styled.div`
// css 문법으로 작성
width: 100px;
height: 100px;
border: 1px solid ${(props) => props.borderColor};
margin: 20px
`
// 배열에 사용할 색상 값 지정하기
const boxList = ["red", "blue", "green", "black"];
// color가 인자로 들어올 때마다 해당 값 리턴
const getBoxName = (color) => {
switch (color) {
case "red":
return "빨간 박스";
case "blue":
return "파란 박스";
case "green":
return "초록 박스";
default:
return "검정 박스";
}
};
//
function App() {
return (
<StContainer>
{boxList.map((box) => {
return <StBox borderColor={box}>{getBoxName(box)}</StBox>;
})}
</StContainer>
);
}
import { createGlobalStyle } from "styled-components";
const GlobalStyle = createGlobalStyle`
body {
font-family: "Helveica", "Arial", sans-serif;
line-height: 1.5;
font-size: 20px;
font-weight: 600;
}
`;
export default GlobalStyle;
import 해서 사용
function App() {
return (
<StContainer>
<GlobalStyle />
{boxList.map((box) => {
return <StBox borderColor={box}>{getBoxName(box)}</StBox>;
})}
</StContainer>
);
}
https://meyerweb.com/eric/tools/css/reset/
위 페이지의 코드를 복사해서 reset.css 파일에 추가한다.
index.jsx에 import 한다.
![[스크린샷 2023-11-07 오후 3.36.46.png]]
기본적인 스타일이 제거된다.