/* Copyright (C) 2024 Manuel Bustillo*/ 'use client'; import { Group } from '@/app/lib/definitions'; import TableOfContents from '../components/table-of-contents'; export default function GroupsTable({ groups }: { groups: Group[] }) { return ( ( {group.name}
{group.attendance?.confirmed} {group.attendance?.tentative} {group.attendance?.invited} {group.attendance?.declined} {group.attendance?.considered} {group.attendance?.total} )} /> ) }