Display a tab with information about groups #98

Merged
bustikiller merged 4 commits from groups-table into main 2024-11-13 18:29:15 +00:00
Showing only changes of commit a6c517f8a1 - Show all commits

View File

@ -50,22 +50,22 @@ export default function GroupsTable() {
<td className="px-6">
<div className="w-8 h-8 rounded-full" style={{ backgroundColor: group.color }}></div>
</td>
<td className="px-6">
<td className="px-6 text-lg">
{group.attendance?.confirmed}
</td>
<td className="px-6">
<td className="px-6 text-sm">
{group.attendance?.tentative}
</td>
<td className="px-6">
<td className="px-6 text-sm">
{group.attendance?.invited}
</td>
<td className="px-6">
<td className="px-6 text-sm">
{group.attendance?.declined}
</td>
<td className="px-6">
<td className="px-6 text-sm">
{group.attendance?.considered}
</td>
<td className="px-6">
<td className="px-6 text-sm">
{group.attendance?.total}
</td>
</tr>