This commit is contained in:
2022-09-14 22:07:17 -04:00
parent 5c685bee4c
commit ea6bf2d09a
99 changed files with 21064 additions and 60266 deletions

View File

@@ -0,0 +1,12 @@
import {Component, EventEmitter, Input, Output} from '@angular/core';
@Component({
selector: 'xxx-navbar',
templateUrl: './navbar.component.html',
styleUrls: ['./navbar.component.scss']
})
export class NavbarComponent {
@Input() hamburger = true;
@Output() hamburgerClick = new EventEmitter<void>();
}