Iceshrimp.NET/Iceshrimp.Frontend/Components/NotificationList.razor
2024-07-11 01:06:18 +02:00

25 lines
No EOL
488 B
Text

@if (_state == State.Init)
{
<div class="scroller">
@foreach (var el in Notifications)
{
<div class="wrapper">
<NotificationComponent NotificationResponse="el" @key="el.Id"/>
</div>
}
<ScrollEnd ManualLoad="LoadMore" IntersectionChange="LoadMore"></ScrollEnd>
</div>
}
@if (_state == State.Loading)
{
<div>Loading!</div>
}
@if (_state == State.Error)
{
<div>Something went wrong!</div>
}
@code {
}