13 lines
274 B
Plaintext
13 lines
274 B
Plaintext
<section class="training-section">
|
|
<MudText Typo="Typo.h5" Class="mb-2">@Title</MudText>
|
|
@ChildContent
|
|
</section>
|
|
|
|
@code {
|
|
[Parameter]
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
[Parameter]
|
|
public RenderFragment? ChildContent { get; set; }
|
|
}
|