React css
1.css stylesheets
2.inline styling
3.css Modules
4.css in Js Libraries(styled components)
1.css Stylesheets:--
css file:--
inside component/style:-
style.css
.custom{
color:red;
background-color: blue;
border:1px solid red;
}
js file:-
import Style from './style/style.css'
<h1 className='custom'>hello gaurav</h1>
Comments
Post a Comment