hn-dotnet/Apps/Client/Pages/Container.razor
2020-12-27 12:29:46 +01:00

22 lines
310 B
Plaintext

@page "/container"
@inject MyState State
@foreach (var name in State.Names)
{
<p>@name</p>
}
<Names />
<input @bind="@CurrentValue" />
<button @onclick="OnSend">Save</button>
@code {
private string CurrentValue;
private void OnSend()
{
State.AddName(CurrentValue);
CurrentValue = "";
}
}