Files
Shogi/Shogi.UI/Pages/Home/GameBoard/SpectatorGameBoard.razor
Lucas Morgan 26fd955aa4 Fix claims.
Use OID instead of email for microsoft identifier.
Fix PlayerCount route.
Add created date to user table.
Create spectator icon.
2023-01-20 20:48:38 -06:00

8 lines
190 B
Plaintext

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