You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
509 B
20 lines
509 B
@page "/test"
|
|
<div class="text-center bg-blue-100">
|
|
<input class="border-4 w-1/3 rounded m-6 p-6 h-8
|
|
border-blue-300" @bind-value="SearchText"
|
|
@bind-value:event="oninput" placeholder="Search by title" />
|
|
</div>
|
|
|
|
@if (!Users.Any())
|
|
{
|
|
<p>Loading some images...</p>
|
|
}
|
|
else
|
|
{
|
|
<div class="p-2 grid grid-cols-1 sm:grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-3">
|
|
@foreach (var user in FilteredUsers)
|
|
{
|
|
<p>feur</p>
|
|
}
|
|
</div>
|
|
} |