hn-dotnet/Apps/Client/Pages/Container.razor

31 lines
321 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 = "";
}
}