This commit is contained in:
MeysamMoghaddam
2025-09-28 01:28:44 +03:30
parent 86e4c3b551
commit 1b8a584435
29 changed files with 1086 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
using Microsoft.JSInterop;
using MudBlazor;
namespace FrontOffice.Main.Shared;
public partial class MainLayout
{
private MudThemeProvider _mudThemeProvider;
private async void Back()
{
await JSRuntime.InvokeVoidAsync("history.back");
}
}