How to import image (.svg, .png ) in a React Component

后端 未结 7 1249
一整个雨季
一整个雨季 2020-12-04 23:30

I am trying to import an image file in one of my react component. I have the project setup with web pack

Here\'s my code for the component

import Di         


        
7条回答
  •  温柔的废话
    2020-12-04 23:37

    Solved the problem, when moved the folder with the image in src folder. Then I turned to the image (project created through "create-react-app")
    let image = document.createElement("img"); image.src = require('../assets/police.png');

提交回复
热议问题