Hi!
Is there anyway to add selected days ? (i want to pull dates from the db and mark them as selected)
here is what i am trying :
<ScheduleSelector
selectionScheme="linear"
startDate={startDate}
selection={schedule}
className={"overflow-y-auto h-96"}
numDays={7}
unselectedColor={'#EDF2F3'}
selectedColor={'#5289B5'}
dateFormat="dddd"
hoveredColor={'#AFD8F2'}
minTime={0}
maxTime={24}
onChange={handleClick}
renderDateCell={scheduledates}
/>
</div>
(scheduledates are the dates pulled from the db)
Hi!
Is there anyway to add selected days ? (i want to pull dates from the db and mark them as selected)
here is what i am trying :
(scheduledates are the dates pulled from the db)