Add chapter 12 code

This commit is contained in:
Alvin Ashcraft
2023-08-27 14:31:36 -04:00
parent 404d155672
commit 0b11ff507d
32 changed files with 555 additions and 0 deletions
@@ -0,0 +1,15 @@
using Microsoft.UI.Xaml;
namespace BlazorTasksHost
{
/// <summary>
/// An empty window that can be used on its own or navigated to within a Frame.
/// </summary>
public sealed partial class MainWindow : Window
{
public MainWindow()
{
this.InitializeComponent();
}
}
}