[CHANGE] Added dev page

This commit is contained in:
max
2025-09-05 16:23:32 +02:00
parent 92e5bb7f1f
commit 55322f8792
6 changed files with 67 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
@page "/Development"
@using Manager.App.Components.Application.Dev
<title>Development page</title>
<MudTabs Outlined Position="Position.Left" PanelClass="pa-4" ApplyEffectsToContainer Style="height: 100%">
<MudTabPanel Text="Authentication">
<AuthenticationHasher />
</MudTabPanel>
</MudTabs>

View File

@@ -0,0 +1,8 @@
using Microsoft.AspNetCore.Components;
namespace Manager.App.Components.Pages;
public partial class Development : ComponentBase
{
}