Files
mapo-core/MP-TAB/MP-TAB.Client/Components/MachineBlock.razor
T
2023-09-25 18:45:10 +02:00

15 lines
168 B
Plaintext

<h3>MachineBlock</h3>
@code {
[Parameter]
public string? Title { get; set; }
private bool DoPlaceholder
{
get => Title == null;
}
}