일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- js 특정 위치로 이동
- SafeArea 커스텀
- styled component 작동안함
- RN navitate push
- 임고미
- safari wiondow.open
- input 숫자입력
- slick slider 간격
- 타입스크립트
- React Native SafeArea Custom
- styled component
- 트윈맥스 기초
- 리액트
- React Native navigation
- reactnative 웹뷰 페이지 로딩
- react이론
- 웹뷰 페이지 로딩
- React-Native 공부
- styled component is not working
- scrollIntoView scrollTo
- react
- rn webview page loading
- gsap
- styled component 작동 안될때
- react native safeArea
- JS
- 프론트앤드
- gsap 기초
- React-Native IOS
- 퍼블리셔
Archives
- Today
- Total
개발공부 임고미
[Styled Component] 적용안되는경우2 본문
728x90
300x250
결론 :
//X
const CustomButtom = styled(CommonButton) ``;
//O
const CustomButtom = styled(props => <CommonButton {...props} />) ``;
평소에는 위와 같은 방식으로 하면 잘 작동되는데 안되는경우가 잇다.
CustomButton이 CommonButton보다 먼저 생성되는경우이다.
위의 경우에는
styled components component cannot create styled-component for component: undefined.
라는 문구가 뜬다.
이때 위와 같은 방법으로 props을 받았을떄로 컴포넌트를 생성해주면 위의 에러를 맞이하지 않고 잘 해결할 수 있다.
728x90
300x250
'퍼블리싱 > 라이브러리' 카테고리의 다른 글
[Swiper] loop 모드일때 duplication 이 제대로 안될때 (0) | 2021.03.11 |
---|---|
[swiper] 스와이퍼 pagination 버그 (1) | 2021.03.02 |
[Youtube API] player 사이즈 반응형 맞추기 (0) | 2021.02.07 |
[AOS]간단한 스크롤 모션에 좋은 라이브러리! (0) | 2020.12.31 |
[TweenMax | GSAP] 트윈맥스 - 기초5 (Timeline 사용하기) (0) | 2020.12.30 |
Comments