EventService.js 181 Bytes
export default class EventService {
    getEvents() {
        return fetch('demo/data/events.json')
            .then((res) => res.json())
            .then((d) => d.data);
    }
}