画像の用意
-
src/images
ディレクトリに画像ファイルを保存する。- 今回は、Qiitaのロゴ画像を使用する。
- ダウンロード元 - https://help.qiita.com/ja/articles/others-brand-guideline
-
src/images/qiita.ping
で保存
- 今回は、Qiitaのロゴ画像を使用する。
書き方
src/components/ExampleComponent.jsx
import React from 'react';
import QiitaIcon from '../images/qiita.png';
const ExampleComponent = () => (
<div>
<img src={ QiitaIcon } alt="Qiita" />
</div>
);
export default ExampleComponent;