Sunday, October 16, 2022

Fetch data from local JSON file in React

How to access public files in React and fetch JSON data from local file:

http://localhost:3000/data.json // JSON located in /ReactProject/public/data.json

const { data, loading, error } = useFetch('data.json');

https://akhtarvahid.medium.com/how-to-access-fetch-the-local-json-file-to-react-5ce07c43731d

No comments:

Post a Comment