We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Styled Component에 전달하는 prop은 무조건 감싸는 dom element로 전달됨 (ex: div, a 등)
이 때 오류가 발생하게 되는데 크게 두 가지임
2-1. prop의 value로 boolean값이 전달되는 경우 - true/false로 Warning
ismobile={ismobile ? 'ismobile' : undefined}
2-2. prop이 DOM element가 받을 수 있는 속성이 아닌 경우 - 아예 DOM에 써버리고 말자
ismobile={ismobile ? 'ismobile' : undefined} // 값을 String으로 줌
The text was updated successfully, but these errors were encountered:
styled component의 repository에선 해결 방법이 안나오는 상황인 듯
참고: styled-components/styled-components#305
Sorry, something went wrong.
StackoverFlow의 비공식 해결 방법 참고: https://stackoverflow.com/questions/49834251/how-to-extend-styled-component-without-passing-props-to-underlying-dom-element 되는지는 모르겠음.
No branches or pull requests
Styled Component에 전달하는 prop은 무조건 감싸는 dom element로 전달됨 (ex: div, a 등)
이 때 오류가 발생하게 되는데 크게 두 가지임
2-1. prop의 value로 boolean값이 전달되는 경우 - true/false로 Warning
ismobile={ismobile ? 'ismobile' : undefined}
// true일 때 다른 값으로, false일 때 undefined로2-2. prop이 DOM element가 받을 수 있는 속성이 아닌 경우 - 아예 DOM에 써버리고 말자
ismobile={ismobile ? 'ismobile' : undefined} // 값을 String으로 줌
The text was updated successfully, but these errors were encountered: