I am using React Native version 0.59.4. I created a file data.json
But when I import this file like this
import myData from '../staticData/data.json';
I get this error Bundle failed: Could not resolve module ...
and I made sure the path is correct
I also tried removing the extension but no change
I tried almost every solution here.
Is there anything more that I can try?
EDIT
I tried changing the extension from .json
to .js
and in that file I added export default { // json } and it worked like a charm.