Is there any possibility to add background color, like selected color to today date?
Try like this
const today = moment().format('YYYY-MM-DD');
markedDates={{ [today]: { selected: true, selectedColor: 'red' }, }}
markedDates={{
[today]: { selected: true, selectedColor: 'red' },
}}
Most helpful comment
Try like this
const today = moment().format('YYYY-MM-DD');markedDates={{[today]: { selected: true, selectedColor: 'red' },}}