import { Component, Input, OnInit } from '@angular/core';
@Component({
selector: 'lib-my-ng-lib-title',
template: `
{{title || 'Nilesh Patel'}}
`,
styles: [
]
})
export class MyNgLibTitleComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
@Input() title: string
}