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

后端 未结 7 1260
一整个雨季
一整个雨季 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条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-04 23:40

    You can use require as well to render images like

    //then in the render function of Jsx insert the mainLogo variable
    
    class NavBar extends Component {
      render() {
        return (
          
        );
      }
    }
    

提交回复
热议问题