@model PlanTempus.Application.Features.Employees.Components.EmployeeTableViewModel
@Model.CurrentCount af @Model.MaxCount @Model.CountLabel
@Model.InviteButtonText
@Model.ColumnUser
@Model.ColumnRole
@Model.ColumnStatus
@Model.ColumnLastActive
@foreach (var employeeKey in Model.EmployeeKeys)
{
@await Component.InvokeAsync("EmployeeRow", employeeKey)
}