Add project files.

This commit is contained in:
2020-01-06 22:29:20 +01:00
parent 0c5631787c
commit 514796de23
33 changed files with 1496 additions and 0 deletions

View File

@ -0,0 +1,23 @@
using Microsoft.AspNetCore.Components;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Blazor3State.Shared
{
public enum LoadingContainerState { Loading, Loaded, Error }
public partial class LoadingContainer
{
[Parameter]
public LoadingContainerState State { get; set; }
[Parameter]
public RenderFragment Loading { get; set; }
[Parameter]
public RenderFragment Loaded { get; set; }
[Parameter]
public RenderFragment ErrorContent { get; set; }
}
}