Created
August 6, 2021 10:38
-
-
Save AnteaterKit/69db51a634a73a93c0f12eb066f02af2 to your computer and use it in GitHub Desktop.
dropdown
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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