12 lines
262 B
C#
12 lines
262 B
C#
|
|
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");
|
||
|
|
}
|
||
|
|
}
|