TourIAm/TIAMSharedUI/Pages/Components/FullNameEditor.razor

23 lines
628 B
Plaintext

@using AyCode.Blazor.Components.Components
<h3>
@NullText
</h3>
<AcTextBox @ref="firstNameTextField"
TextChanged="@((newValue) => OnFirstNameChanged(newValue))"
TextExpression="@(() => FirstName)"
CssClass="form-field w-100"
NullText="First name">
</AcTextBox>
<AcTextBox @ref="lastNameTextField"
TextChanged="@((newValue) => OnLastNameChanged(newValue))"
TextExpression="@(() => LastName)"
CssClass="form-field w-100"
NullText="Last name">
</AcTextBox>
@code {
}