12 lines
416 B
Plaintext
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>();
|
|
|
|
}
|