summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/components/downgrade-wrappers/menu-list-ng2/menu-list-ng2.component.html
blob: 37686342e88d24405e772890b3c422fb88e0432f (plain)
1
2
3
4
5
6
7
<menu-list [open]="props?.open" [position]="props?.position" [styleClass]="props?.styleClass">
    <menu-item *ngFor="let item of props?.items"
               [action]="item?.action"
               [styleClass]="item?.styleClass">
        {{ item?.contents }}
    </menu-item>
</menu-list>