import { Component, Input } from '@angular/core'; @Component({ selector: 'bs-current-date', template: `
{{ title }}
` }) export class BsCurrentDateViewComponent { @Input() title: string; }