blazor component event to parent code example
Example 1: how to pass property between blazor components
public void ConfigureServices(IServiceCollection services)
{
services.AddSingleton<Services.AppData>();
}
Example 2: how to pass property between blazor components
@page "/page2"
@inject Services.AppData AppData