const cardStyle = {
backgroundColor: "#fff"
}
<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;
}
import React from 'react';
import './App.css';
function App() {
return (
<div className="my-component" />
);
}
export default App;