[CHANGE] Updated layouts && configured rendermode

This commit is contained in:
max
2025-08-04 17:53:02 +02:00
parent 9489742a95
commit 0f8530b9c0
11 changed files with 142 additions and 238 deletions

View File

@@ -0,0 +1,16 @@
using Microsoft.AspNetCore.Components;
namespace ImportUI.Components.Layout;
public partial class ApplicationLayout
{
[CascadingParameter]
public BaseLayout? BaseLayout { get; set; }
public bool DrawerOpen { get; set; } = true;
public string AppText { get; set; } = "YouTube Import";
private void ToggleDrawerOpen()
{
DrawerOpen = !DrawerOpen;
}
}