1
0

More than 3 years have passed since last update.

reactでsrcタグを使って画像を表示する方法

Last updated at Posted at 2021-05-26

Reactでsrcタグを使いたいがソースのパス直書きだとうまくいかない

class JCEbara extends React.Component {
  render() {
    return (
      <img src="img/ebara_entry.png" />
    )
  }
}

画像をインポートして使ったらいけた

import ebara from './img/ebara_entry.png' 

...省略
  return (
    <img src={ebara} />
  )
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0