mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
12 lines
300 B
Plaintext
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>
|
|
} |