在React应用程序中导入图像时出现问题

时间:2020-03-17 23:25:29

标签: reactjs

将图像导入我的React应用程序时遇到问题。不太确定该放置什么。 enter image description here

1 个答案:

答案 0 :(得分:0)

您尝试过这个Add images in react

基于文档,我认为应该在组件外部声明。

import DollarSign from './images/Dallor-Sign.png'

,然后在您的src标记中添加为img

<img className="bla" src={DollarSign} rel="noopener noreferrer" alt="bla" />
相关问题