// Import the React and ReactDOM librariesimportReactfrom'react';importReactDOMfrom'react-dom';// Create a react componentconstApp=()=>{constlabelText='Enter name';constbuttonText={text:'Click me'};return(<div><labelclassName='label'htmlFor='name'>{labelText}</label>
<inputid="name"type="text"/><buttonstyle={{backgroundColor:'blue',color:'white'}}>{buttonText.text}</button>
</div>
);}// Take the react component and show it on the screenReactDOM.render(<App/>,document.querySelector('#root'));