문제
아래 코드를 실행하면 스토리북에서 에러가 발생한다
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; `;

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)
![[팀7] 뿡치와 삼촌들 - Devnity](https://www.notion.so/image/https%3A%2F%2Fs3-us-west-2.amazonaws.com%2Fsecure.notion-static.com%2F01eff8cd-e29b-4c4f-baa5-b2eaaa708cd6%2F2.jpg?table=block&id=c0f09e02-7acf-4d9e-8aea-b21f7a9a8822&cache=v2)

