Reputation: 41
I have a React
component that is being used as a home page for a site that I am building.
I am using react-bootstrap
and I need to know how to create a responsive background image for this home page using React
.
Upvotes: 4
Views: 8590
Reputation: 247
Use this ..It's really work..
import Image from 'react-bootstrap/Image';
2.Import image though..
import <Image Name> from ' <Image path>';
3.for import image..
<Image src={<Image Name>} fluid />
Upvotes: 1
Reputation: 236
For responsive image given style={{height:'auto',width:'100%'}}
Upvotes: 3