Fan website of IMMORTAL: Gates of Pyre.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

25 lines
532 B

@implements IDisposable
<div>
<textarea readonly style="background-color: #36393F; width: 330px; height: 400px;">
@BuildComparisonService.AsJson()
</textarea>
</div>
@code {
[Inject]
IBuildComparisonService BuildComparisonService { get; set; } = default!;
protected override void OnInitialized()
{
base.OnInitialized();
BuildComparisonService.Subscribe(StateHasChanged);
}
void IDisposable.Dispose()
{
BuildComparisonService.Unsubscribe(StateHasChanged);
}
}