13 lines
293 B
Plaintext
13 lines
293 B
Plaintext
@page "/auction"
|
|
@using TIAMSharedUI.Pages.Components
|
|
@using TIAMWebApp.Shared.Application.Interfaces;
|
|
@inject ISessionService sessionService
|
|
|
|
<div class="container-fluid">
|
|
<h1>Auction</h1>
|
|
<AuctionComponent UserId="sessionService.User.UserId"></AuctionComponent>
|
|
</div>
|
|
@code {
|
|
|
|
}
|