Files
mapo-core/MP-TAB2/MP-TAB/Components/Pages/MachineDetail.razor
T
2023-12-18 11:36:24 +01:00

17 lines
455 B
Plaintext

@page "/machine-detail"
@* @page "/machine-detail/{IdxMacc}" *@
<!-- Temporary workaround until MapRazorComponents supports AddAdditionalAssemblies -->
<!-- Once that is implemented, the main project won't need to include this file -->
<MP_TAB.Client.Pages.MachineDetail IdxMacc="@IdxMacc"></MP_TAB.Client.Pages.MachineDetail>
@code {
[Parameter]
[SupplyParameterFromQuery(Name = "IdxMacc")]
public string? IdxMacc { get; set; }
}