Friday, July 5, 2019

How to fetch data from local JSON file on react native?

Since React Native 0.4.3 you can read your local JSON file like this:
const customData = require('./customData.json');
and then access customData like a normal JS object.


----

import sample from '../dbstore/sample1.json'

No comments:

Post a Comment