:clipboard: Ionic app to drag & drop items, tutorial code from Jameson Saunders of JamiBot.
addNewEvent() {
const start = this.selectedDate;
const end = this.selectedDate;
end.setMinutes(end.getMinutes() + 60);
const event = {
title: 'Event #' + start.getMinutes(),
startTime: start,
endTime: end,
allDay: false
};
this.db.collection('events').add(event);
}