Hi, I am going through tutorials and code to get a start with Blazor and MudBlazor.
This is the page I am looking at.
mudblazor.com
My project even when zipped is too large to upload.
Its not my code. It is just code I am trying to trial things out with.
Thanks,
(not sure if there is a blazor section to this forum)
There is an error with "DialogUsageExample_Dialog".
This is the page I am looking at.

MudBlazor - Blazor Component Library
Blazor Component Library based on Material Design. MudBlazor is easy to use and extend, especially for .NET devs because it uses almost no Javascript.

Its not my code. It is just code I am trying to trial things out with.
Thanks,
(not sure if there is a blazor section to this forum)
There is an error with "DialogUsageExample_Dialog".
C#:
@inject IDialogService DialogService
<MudButton @onclick="OpenDialog" Variant="Variant.Filled" Color="Color.Primary">
Open Simple Dialog
</MudButton>
@code {
private void OpenDialog() => DialogService.Show<DialogUsageExample_Dialog>("Simple Dialog");
}