[REACT] CSS 초기화

P__.mp4·2022년 8월 10일
0

REACT

목록 보기
2/7

1. styled-components, styled-reset 설치

터미널에서 npm install styled-components 또는 yarn add styled-components

2. import 및 사용법

css 초기화할 component에서(대부분 최상위 컴포넌트이지 않을까)

...
import {createGlobalStyle} from 'styled-components';


const [컴포넌트] = () => {
  	const GlobalStyle = createGlobalStyle`  //css 초기화가 된 component
        ${reset}
    `;
  
	return (
    	<>
            <GlobalStyle/>	//초기화
      		...
      	</>
    )
}
profile
개발은 자신감

0개의 댓글