Add project files.

This commit is contained in:
2020-09-28 21:48:44 +02:00
parent 566990d7f7
commit 033d4c181d
32 changed files with 1381 additions and 0 deletions

View File

@ -0,0 +1,16 @@
@page "/"
@inject IConfiguration _config
<h1>Hello, world!</h1>
<p>
MySetting Value: @mySetting
</p>
@code{
string mySetting = "";
protected override void OnInitialized()
{
mySetting = _config.GetValue<string>("MySetting");
}
}