Skip to content

Instantly share code, notes, and snippets.

@AnteaterKit
Created August 6, 2021 10:38
Show Gist options
  • Save AnteaterKit/69db51a634a73a93c0f12eb066f02af2 to your computer and use it in GitHub Desktop.
Save AnteaterKit/69db51a634a73a93c0f12eb066f02af2 to your computer and use it in GitHub Desktop.
dropdown
<div class="dropdown">
<div>
<app-button
[text]='"Dropdownmenu"'
[isActive]="isOpen"
(click)='changeOpenedState()'></app-button>
</div>
<div class="menu-wrapper" *ngIf='isOpen'>
<app-menu></app-menu>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment