22 lines
310 B
Plaintext
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 = "";
|
|
}
|
|
} |