...now WE GOT IT

This commit is contained in:
2024-02-09 17:13:02 -06:00
parent fa30c526b9
commit 0ce6de8b13

View File

@@ -9,7 +9,7 @@ const grid = [];
for (let i = 0; i < 13; i++) {
const row = [];
row.push(hoursOfDay[i]);
const row = Array.from({ length: 5 }, (_, j) => <CalendarCell key={j} />);
row.push(Array.from({ length: 5 }, (_, j) => <CalendarCell key={j} />));
grid.push(row);
}