<div style={{backgroundColor: "#FF0000"}}>red</div>
<div className='full'>
</div>
//Css for background image
.full{
background-image: url(./imgs/B.png);
height: 550px;
background-repeat: no-repeat;
background-size: cover;
background-position: center left;
}
// Change the background color to red
document.body.style.backgroundColor = "red";
import React from 'react';
import './App.css';
function App() {
return (
<div className="my-component" />
);
}
export default App;