Add project files.
This commit is contained in:
12
Blazor3State/Shared/LoadingContainer.razor
Normal file
12
Blazor3State/Shared/LoadingContainer.razor
Normal file
@ -0,0 +1,12 @@
|
||||
@if (State == LoadingContainerState.Loading)
|
||||
{
|
||||
@Loading
|
||||
}
|
||||
else if (State == LoadingContainerState.Loaded)
|
||||
{
|
||||
@Loaded
|
||||
}
|
||||
else if (State == LoadingContainerState.Error)
|
||||
{
|
||||
@ErrorContent
|
||||
}
|
||||
Reference in New Issue
Block a user