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

12 lines
416 B
Plaintext

@* @attribute [StreamRendering(true)] *@
<!-- Temporary workaround until MapRazorComponents supports AddAdditionalAssemblies -->
<!-- Once that is implemented, the main project won't need to include this file -->
<MP_TAB.Client.Components.SlideMenu MenuItems="@MenuItems"></MP_TAB.Client.Components.SlideMenu>
@code {
[Parameter]
public List<LinkMenu> MenuItems { get; set; } = new List<LinkMenu>();
}