# Images

To include images in your components, please reference the example below:

Save all your images to to the following location 'Frontend/src/assets/graphics'

Import your image/images into your component

```
import MyImage from './path/to/myImage.png';
```

Add a img html element to your component&#x20;

```
<img src={MyImage} />
```
