diff options
| author | Jake Mannens <jake@asger.xyz> | 2023-08-29 10:12:53 +1000 |
|---|---|---|
| committer | Jake Mannens <jake@asger.xyz> | 2023-08-29 10:12:53 +1000 |
| commit | f22544482a4559cbb4ac14d1f79419dd4a5304ac (patch) | |
| tree | de6a464554baabdae1607dfd1432ff80d6349f35 /MainLayout.razor | |
| parent | b97c475d2f5b6c4c87719beeab02d1aeacf8a288 (diff) | |
Finished about dialog
Diffstat (limited to 'MainLayout.razor')
| -rw-r--r-- | MainLayout.razor | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/MainLayout.razor b/MainLayout.razor index d105399..2d3cadc 100644 --- a/MainLayout.razor +++ b/MainLayout.razor @@ -22,13 +22,8 @@ @Body </div> -<Dialog Title="About" @ref=aboutDialog> - About HyperBooru - <div class="button-container"> - <button @onclick=@(() => aboutDialog.Hide())>Close</button> - </div> -</Dialog> +<AboutDialog @ref=aboutDialog/> @code { - private Dialog aboutDialog; + private AboutDialog aboutDialog; } |
