I am trying to pass 2 props to a function, the minDate is to take the current date. The maxDate should take 5 days from today. But the minDate and maxDate are not getting calculated.
minDate={moment().format('DD-MM-YYYY')}
maxDate={moment('15/11/2023 22:58:58', 'DD/MM/YYYY').calendar()}
Can you please suggest. I am trying to use calendar to adding 5 days using react moment.
moment().add(5, 'days') adds 5 days to the current date, and format('DD-MM-YYYY') is used to format the resulting date in the desired format.