Remotely/Server/Components/Devices/ChatFrame.razor
2021-07-29 07:57:31 -07:00

12 lines
300 B
Plaintext

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