EventService.js 181 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 export default class EventService { getEvents() { return fetch('demo/data/events.json') .then((res) => res.json()) .then((d) => d.data); } }