Inline Styling
function Styling (){
return(
<div>Styling</div>
)
}
export default Styling// rest of code
<h1 style={{margin: "auto", backgroundColor: "#007bff" , color: "#fff"}}>Inline Styling</h1>
// rest of codeLast updated
function Styling (){
return(
<div>Styling</div>
)
}
export default Styling// rest of code
<h1 style={{margin: "auto", backgroundColor: "#007bff" , color: "#fff"}}>Inline Styling</h1>
// rest of codeLast updated