Remotely/Server/Components/Devices/ChatFrame.razor
2023-08-04 14:35:03 -07:00

12 lines
260 B
Plaintext

@attribute [Authorize]
@inherits AuthComponentBase
@if (_chatSessions.Any())
{
<div class="chat-frame">
@foreach (var session in _chatSessions)
{
<ChatCard @key="session.SessionId" Session="session" />
}
</div>
}