Answers for "react style guide"

2

use style in react

// use inline style in react
const myFunction = () => {
	return (
     <p style={{ fontSize: 24, margin: '0 auto', textAlign: 'center'}}>
       Hello world
    </p>
    );
}
Posted by: Guest on February-18-2022
1

inline styling react

// Change the background color to red
document.body.style.backgroundColor = "red";
Posted by: Guest on November-22-2020

Code answers related to "react style guide"

Code answers related to "Javascript"

Browse Popular Code Answers by Language