mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 05:54:26 +01:00
* Use Blazor for the Vault code * Put elements in different file * Controller abstraction * Break into VaultElement
12 lines
302 B
C#
12 lines
302 B
C#
using Microsoft.AspNetCore.Components;
|
|
using Microsoft.AspNetCore.Components.Rendering;
|
|
|
|
namespace BTCPayServer.Blazor.VaultBridge;
|
|
|
|
public class VaultElement
|
|
{
|
|
protected virtual void BuildRenderTree(RenderTreeBuilder builder) { }
|
|
|
|
public RenderFragment RenderFragment => BuildRenderTree;
|
|
}
|