React: JSX Mar 28, 2019 //HTML <div style="background-color: red;"></div> //JSX <div style={{backgroundColor: 'red'}}></div> src/index.js // Import the React and ReactDOM libraries import React from 'react'; import ReactDOM from 'react-dom'; // Create a react component const App = () => { const labelText = 'Enter name'; const buttonText = { text: 'Click me' }; return ( <div> <label className='label' htmlFor='name'> {labelText} </label> <input id="name" type="text" /> <button style={{ backgroundColor: 'blue', color: 'white' }}> {buttonText.text} </button> </div> ); } // Take the react component and show it on the screen ReactDOM.render( <App />, document.querySelector('#root') );