I\'m trying to extend styles for a react component using styled-components but is not working. AFAIK, I\'m doing it the right way, but perhaps I\'m missing somethin
styled-components
I didn't know that was a way to do it. I would do:
const Link = styled.a` ..put you css styles here (className styles) ` const StyledLink = styled(Link) ` color: palevioletred; font-weight: bold; ` render(){ return( Unstyled, boring Link Styled, exciting Link ) }