page-header.component.ts 396 Bytes
Newer Older
Ooh-Ao committed
1 2 3 4 5 6 7 8 9 10 11
import { Component, Input } from '@angular/core';

@Component({
  selector: 'app-page-header',
  templateUrl: './page-header.component.html',
  styleUrls: ['./page-header.component.scss']
})
export class PageHeaderComponent {
  @Input() title!: string;
  @Input() title1!:string;
  @Input() activeitem!: string;
12
  @Input() pathTitle: string[] = []
Ooh-Ao committed
13 14 15 16 17
  constructor() { }

  ngOnInit(): void {
  }
}