Styled component는 React에서 CSS 작업을 간편하게 할 수 있는 방법이다
npm i styled-components
import React from "react";
import styled from "styled-components";
const H3 = styled.h3`
font-size: 10px;
`;
function App() {
return <H3>hi</H3>;
}
export default App;
이런 식으로 component 위에서 CSS 작업을 매우 간편하게 할 수 있다
기억해야 될 점은 tag가 대문자여야된다는 것
'ReactJS' 카테고리의 다른 글
ReactJS (5) Router (0) | 2023.03.04 |
---|---|
ReactJS (0) ReactJS 프로젝트 시작하기 (0) | 2023.03.04 |
ReactJS (4) Theme Provider (0) | 2023.03.04 |
ReactJS (3) Global Style (0) | 2023.03.04 |
ReactJS (1) JSX (0) | 2023.03.04 |