mirror of
https://github.com/PacktPublishing/Web-Development-with-Blazor-Second-Edition.git
synced 2025-12-06 05:32:03 +01:00
12 lines
149 B
C#
12 lines
149 B
C#
|
|
namespace BlazorHybridApp;
|
|||
|
|
|
|||
|
|
public partial class App : Application
|
|||
|
|
{
|
|||
|
|
public App()
|
|||
|
|
{
|
|||
|
|
InitializeComponent();
|
|||
|
|
|
|||
|
|
MainPage = new MainPage();
|
|||
|
|
}
|
|||
|
|
}
|