Neighbourhood.omg.lol/Components/PageHeading.razor
Gordon Pedersen 0c3836b0c8 Simplify and standardise a lot of the loading
I was overcomplicating everything trying to reduce the render lag.
Just simplify it a bit. It works.
2024-06-13 14:46:24 +10:00

18 lines
355 B
Text

<div class="row center-align">
<h3>
<i class="@icon extra"></i> @title
</h3>
</div>
<div class="row center-align">
<p>@Description</p>
</div>
<div class="space"></div>
@code {
[Parameter]
public string icon { get; set; }
[Parameter]
public string title { get; set; }
[Parameter]
public RenderFragment Description { get; set; }
}