mirror of
https://github.com/claunia/romrepomgr.git
synced 2025-12-16 19:24:51 +00:00
13 lines
376 B
C#
13 lines
376 B
C#
|
|
using Microsoft.AspNetCore.Components;
|
||
|
|
using Microsoft.FluentUI.AspNetCore.Components;
|
||
|
|
using RomRepoMgr.Blazor.Components.Dialogs;
|
||
|
|
|
||
|
|
namespace RomRepoMgr.Blazor.Components.Pages;
|
||
|
|
|
||
|
|
public partial class Home : ComponentBase
|
||
|
|
{
|
||
|
|
async Task ImportDatsAsync()
|
||
|
|
{
|
||
|
|
IDialogReference dialog = await DialogService.ShowDialogAsync<ImportDats>(new DialogParameters());
|
||
|
|
}
|
||
|
|
}
|