styled-components 초기 세팅하기
[styled-components] 초기 CSS 세팅하기(GlobalStyles, styled-reset, ThemeProvider)
[styled-components] 초기 CSS 세팅하기(GlobalStyles, styled-reset, ThemeProvider)
2022.02.08🎯 Styled-Components 전역 스타일링 (Global Style) & styled-reset & ThemeProvider createGlobalStyle Styled Components는 createGlobalStyle()라는 함수를 제공하고 있다. 여러 컴포넌트에 걸쳐 공통된 css를 작업할 때 사용한다. styled-reset 프로젝트 시작할 때 css 초기화를 위해 Normalize 파일을 사용해본 경험이 있을 것이다. 이러한 부분을 npm으로 다운로드하여서 손쉽게 리액트에 적용할 수 있다. ThemeProvider Context API 기반으로 이루어진 Styled-Component에서 제공하는 Theme Provider이다. themeProvier로 감싼 Component들은 them..