UNPKG

react-timeslot-calendar

Version:

A calendar based on timeslots which can be set as available, occupied and so on.

13 lines (10 loc) 231 B
import moment from 'moment'; let helpers = {}; export default helpers; helpers.getMomentFromCalendarJSDateElement = (dayElement) => { return moment([ dayElement.year, dayElement.month - 1, dayElement.date, ]); };