@page "/accounts" Accounts

Accounts

@code { private List accounts = new(); private string? newAccount; private void AddAccount() { if (!string.IsNullOrWhiteSpace(newAccount)) { accounts.Add(new AccountItem{ AccountName = newAccount }); newAccount = string.Empty; } } }