1
0
mirror of synced 2024-12-05 03:17:58 +01:00
TaikoLocalServer/TaikoWebUI/Pages/Users.razor.cs
shiibe 139a612b6c More UI clean up
* Clean up repeated code
* Move User cards to a reusable component
* Create page for Login
* Clean up Login, Register, and Change password forms
* Add links to sidebar navigation
* Lots of other misc. stuff
2024-03-09 01:07:34 -05:00

13 lines
334 B
C#

using Microsoft.Extensions.Options;
namespace TaikoWebUI.Pages;
public partial class Users
{
private DashboardResponse? response;
protected override async Task OnInitializedAsync()
{
await base.OnInitializedAsync();
response = await Client.GetFromJsonAsync<DashboardResponse>("api/Dashboard");
}
}