Post

[Emotion 에러] Component selectors can only be used in conjunction

1
2
3
4
5
export const Top = styled.div`
  ${Container} {
    border-bottom: 1px solid #d7d7d7;
  }
`;

Emotion으로 컴포넌트 스타일링 중 위와 같이 StyledComponent 코드 안에서 외부 컴포넌트를 참조하면 아래와 같은 에러가 뜬다.

Component selectors can only be used in conjunction with @emotion/babel-plugin.

아직 Emotion에서 외부 컴포넌트를 지원하지 않는 것 같다.

어쩔 수 없이 외부 컴포넌트를 인자로 전달하여 새로운 컴포넌트를 만들었다.

1
2
3
export const HeaderContainer = styled(Container)`
  border-bottom: 1px solid #d7d7d7;
`;


Component selector error with Storybook/React/Typescript and Emotion

This post is licensed under CC BY 4.0 by the author.