export const fetchData = () => {
return fetch('./data/data.json')
.then(response => {
return response.json();
})
};