style for react component code example
Example 1: react div style
return <div style={{display: 'inline-block'}}>
Example 2: Styling React Using CSS
class MyHeader extends React.Component {
render() {
return (
<div>
<h1 style={{color: "red"}}>Hello Style!</h1>
<p>Add a little style!</p>
</div>
);
}
}