how to put style tag in react code example
Example 1: inline style jsx
//Multiple inline styles
<div style={{padding:'0px 10px', position: 'fixed'}}>Content</div>
Example 2: javascript style inline react
<div style={{ width: '200px', backgroundColor: 'red' }}>