17 lines
238 B
Plaintext
17 lines
238 B
Plaintext
@page "/now"
|
|
@using Selector.SignalR;
|
|
|
|
<h1>Now</h1>
|
|
|
|
@if (nowCache?.LastPlaying?.Track is not null)
|
|
{
|
|
<p role="status">@nowCache.LastPlaying.Track.Name</p>
|
|
}
|
|
|
|
|
|
@code {
|
|
[Inject]
|
|
private NowHubCache nowCache { get; set; }
|
|
}
|
|
|