Using Styled-Components In React.JS

Aria Dev
Geek Culture
Published in
4 min readOct 24, 2021

--

What is styled-components?

Styled components is a library that allows you to write javascript code to style react components with JSX syntax rather than adding classes or tags with a traditional stylesheet.

To Install you can run the command below:

npm i styled-components

Lets take a look at some…

--

--