HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
🧚
[1기]최종 프로젝트 데브코스
/
[팀7] 뿡치와 삼촌들 - Devnity
[팀7] 뿡치와 삼촌들 - Devnity
/
📘
프론트엔드 공간
/
🧑‍🎓
Today We Learned
/
emotion 문법 오류
emotion 문법 오류
emotion 문법 오류

emotion 문법 오류

생성일
Dec 3, 2021 06:44 AM
기록자
Jay Mincheol Cho
해결 여부
속성
Emotion
카테고리
이슈

문제

아래 코드를 실행하면 스토리북에서 에러가 발생한다
const Overlay = styled.div` position: absolute; top: 0; left: 0; width: 100%; height: 100%; ${({ isHover }) => isHover ? css` display: 'block'; background-color: rgba(0, 0, 0, 0); ` : css` display: none; background-color: rgba(0, 0, 0, 0.3); `} transition: background-color 0.5s ease; `;
notion image
TypeError: Object(...) is not a function at http://localhost:6006/main.9cfbc92cbd68c0bb446c.hot-update.js:68:370 at handleInterpolation (http://localhost:6006/vendors~main.iframe.bundle.js:3903:24) at serializeStyles (http://localhost:6006/vendors~main.iframe.bundle.js:4028:15) at http://localhost:6006/vendors~main.iframe.bundle.js:3628:106 at http://localhost:6006/vendors~main.iframe.bundle.js:2417:12 at renderWithHooks (http://localhost:6006/vendors~main.iframe.bundle.js:108090:18) at updateForwardRef (http://localhost:6006/vendors~main.iframe.bundle.js:110149:20)