I am trying to render values in a table
<MudSimpleTable Style="overflow-x: auto;" Striped="true"><tbody> @for (int i = 0; i < place.ScheduleList.Count; i++) { Schedule row = place.ScheduleList[i]; if (i%2==0) { @:<tr> }<td>@row.Title</td><td>@row.Time</td> if (i%2==0) { @:</tr> } }</tbody>but columns are not being rendered inside the rows
