export default class PhotoService {
getImages() {
return fetch('demo/data/photos.json')
.then((res) => res.json())
.then((d) => d.data);
}