Reputation: 1628
I want to access this image in my component.
I know how to add images in root directory files with './assets/image.png'
But not able to add in this iteamscomponents.js
I added this code in iteamscomponents.js
but it gives an error undefined Unable to resolve module ./assets/icons8_search_200px_3.png from components\ItemsComponent.js:
Upvotes: 1
Views: 1995
Reputation: 58
your path would be
../assets/icons8_search_200px_3.png
The two dots are important, it tells the cursor to navigate one folder up. One dot means stay in the same folder.
Upvotes: 3