// if your json data doesn't show then just replace this code.
handleGetJson = () =>{
fetch(`./data.json`, {
headers : {
'Content-Type': 'application/json',
'Accept': 'application/json'
}
})
.then(res=> res.json())
.then(data=> console.log(data))
}