Daniel J. Summers ef12da01dc Convert db to EF Core; start on view page
Also returning skills with profile inquiries now, though that particular query is failing (current WIP) #2
2021-01-06 23:18:54 -05:00

15 lines
212 B
Plaintext

@page "/profile/view/{Id}"
@inject HttpClient http
@inject AppState state
@if (IsLoading)
{
<p>Loading profile...</p>
}
else
{
<ErrorList Errors=@ErrorMessages>
<h3>View Profile</h3>
</ErrorList>
}