HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
프로그래머스 프론트엔드 데브코스 2기
프로그래머스 프론트엔드 데브코스 2기
/
🥀
요한팀
/
✏️
프로젝트 기획
/
🚀
트러블 슈팅 일지
/
전역 theme 설정 with typescript

전역 theme 설정 with typescript

styled 내부에서 theme을 사용할 때는 type이 문제없이 적용이 되었다.
notion image
  • cf) 글로벌 스타일 + theme 설정시 참고 사이트 : https://www.howdy-mj.me/css/emotion.js-intro/
 
하지만 @emotion/react에서 import 해오는 css를 사용하면 theme의 type을 다시 설정해줘야한다.
notion image
 
왜 다시 설정해줘야 하지? (솔직히 아직 잘 모름…)
notion image
 

어떻게 해결할까?

types 폴더 안에 global.d.ts 파일을 만들어서 아래 코드를 추가해주었다.
notion image
 
그리고 요렇게 ThemeProps를 import 없이 사용할 수 있다.
notion image