20 lines
311 B
Plaintext
20 lines
311 B
Plaintext
@using Moonlight.App.Services
|
|
|
|
@inject ConfigService ConfigService
|
|
|
|
@{
|
|
var setupComplete = ConfigService
|
|
.GetSection("Moonlight")
|
|
.GetValue<bool>("SetupComplete");
|
|
}
|
|
|
|
@if (setupComplete)
|
|
{
|
|
@ChildContent
|
|
}
|
|
|
|
@code
|
|
{
|
|
[Parameter]
|
|
public RenderFragment ChildContent { get; set; }
|
|
} |