Styled-components and react-bootstrap?
问题 Is there a way to use styled-components together with react-bootstrap? react-bootstrap exposes bsClass properties instead of className for their component which seems to be incompatible with styled-components. Any experiences? 回答1: You can extend the style keeping the original styles of the component from bootstrap. You will find more documentation on using third party libraries like react bootstrap with styled-components here. const StyledButton = styled(Button)` color: palevioletred; font