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,12 @@
@if (State == LoadingContainerState.Loading)
{
@Loading
}
else if (State == LoadingContainerState.Loaded)
{
@Loaded
}
else if (State == LoadingContainerState.Error)
{
@ErrorContent
}