feat: add CSS for calendarCell div

This commit is contained in:
doprz
2024-03-06 13:26:48 -06:00
parent b535a6eb32
commit 6cdcf4930d
3 changed files with 11 additions and 7 deletions

View File

@@ -33,9 +33,7 @@ const Calendar: React.FC = (props) => {
{/* Displaying the rest of the calendar */}
<div className={styles.calendarGrid}>
{grid.map((row, rowIndex) => (
<div className={styles.row} key={rowIndex}>
{row}
</div>
row
))}
</div>