@using Microsoft.Extensions.Options @using WorkTracker.Configuration @inject IOptions AppAuthOptions @code { [Parameter] public bool IsCollapsed { get; set; } [Parameter] public EventCallback OnToggleSidebar { get; set; } private Task ToggleSidebarAsync() { return OnToggleSidebar.InvokeAsync(); } }