I am trying to load a image from my .json file into my component, but the image does not load.
Someone looks to have solved it, but I don't know what he is talking about in terms of "branching"
"Bumper": [{
"id": 1,
"productSquareId": "BumperStubby",
"productImage": "bumper",
"companyImage": "logo.png",
"price": "$55.99"
},
const image1 = ProductInformation.Bumper[0].companyImage;
<img className = "MainImage" src ={image1}/>
My images is in the same folder(components) as my components. What am I doing wrong here? I appreciate your time.