import { Component, OnInit, Input } from '@angular/core'; @Component({ selector: 'app-navbar-item', templateUrl: './navbar-item.component.html', styleUrls: ['./navbar-item.component.css'] }) export class NavbarItemComponent implements OnInit { @Input() dest: string = "Welcome!"; constructor() { } ngOnInit(): void { } }