DEV Community

Discussion on: How are you using Styled Components?

Collapse
 
jkierem profile image
Juan Miguel Gomez

Mostly for small reusable components. I try to keep it simple with styled components and not abuse them. I moved away from them for css heavy projects. Also theming is really easy so that is something I always use. I normally don't use all the features like style extension. I try to stay on the basic parts of the lib as the advanced features add a bit of complexity that make them harder to use in large code bases

Collapse
 
nitzanhen profile image
Nitzan Hen

Good to know! I'll try to keep the implementation simple.

If I may ask, what do you use for CSS heavy projects?

Collapse
 
jkierem profile image
Juan Miguel Gomez

Css modules with Sass or just Sass with a style loader so that I can import it in js.