Files
Shogi/Shogi.UI/Pages/Home/GameBoard/EmptyGameBoard.razor

12 lines
233 B
Plaintext

@using Contracts.Types;
<GameBoardPresentation Perspective="WhichPlayer.Player1" />
@code {
protected override void OnInitialized()
{
base.OnInitialized();
Console.WriteLine("Empty Game Board.");
}
}