+
+
+ {monthLabel}
+
+
+
+
+ {weekdays.map((w) => (
+
+ {w}
+
+ ))}
+ {days.map((d) => {
+ const inMonth = d.getMonth() === view.getMonth();
+ const isSelected = selected ? sameDay(d, selected) : false;
+ const isToday = sameDay(d, today);
+ return (
+
+ );
+ })}
+
+
+
+
+
+
+