Korean
🏆 2024
🏆 2023
👩❤️👨 구독자 수
✒️ 게시글 수
프로그래밍/Frontend
npm install styled-reset 우선 styled-reset 을 설치해줍니다. styled-components는 local로 돌아가기 때문에 global 한 css 를 만들기 위해서 createGlobalStyle 을 styled-components 로부터 import 해줍니다. 그리고 방금 설치한 styled-reset 도 import 해줍니다. import { createGlobalStyle } from 'styled-components'; import reset from 'styled-reset'; 그리고 GlobalStyles 라는 컴포넌트를 만들어줍니다. const GlobalStyles = createGlobalStyle` ${reset}; `; 참고로 ${reset} 내용을 출력..
Uncaught TypeError: is not a function 함수를 찾을 수 없는 경우 함수명이 태그 id, name 등과 동일하거나 함수 내에 오류가 발생하는 코드가 있따면 발생한다!! 함수명을 겹치지 않게 사용하거나, 함수 내에서 어디서 오류가 뜨는지 console.log로 출력해보면서 확인해보아야 한다.