sanket kheni
sanket kheni

Reputation: 1628

How to access assets in other folders in react native?

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

enter image description here

enter image description here

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

Answers (1)

bold_yet_unwise
bold_yet_unwise

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

Related Questions