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

9 lines
196 B
Plaintext

@using Contracts.Types;
<p>You are spectating</p>
<GameBoardPresentation Perspective="WhichPlayer.Player1" Session="Session" />
@code {
[Parameter] public Session Session { get; set; }
}