I'm currently doing a calendar using React and I'm trying to make a simple function so I don't have to write each time (00:00 - 23:00).
How can I increment every div with the class name calendar-time so it does something like this?
<div className="wrapper">
<div className="calendar-time">
00:00
</div>
<div className="calendar-time">
01:00
</div>
<div className="calendar-time">
02:00
</div>
<div className="calendar-time">
03:00
</div>
</div>
What I tried:
render() {
for (let i = 0; i < 23; i++) {
return(
<div className="calendar-time">
{i}:00
</div>
);
}
return(
<div className="wrapper">
</div>
);
}