KitoC

Results 3 comments of KitoC

I'm also coming up against this issue. Is there any progress on this or any idea why this is happening? Any workarounds?

Found a workaround by wrapping web-components in a HOC. The weird thing is that the web-component will only accept props if they are defined on `.defaultProps` of web-component. ``` const...

Hi @brentonr94, the trick is to wrap the component you created before assigning the defaultProps. e.g. ``` const Button = withStyledComponents((props) => { const { onClick } = props; return...