import { Component, EventEmitter, Input, Output } from '@angular/core'; @Component({ selector: 'app-branch-business-unit', templateUrl: './branch-business-unit.component.html', styleUrls: ['./branch-business-unit.component.scss'] }) export class BranchBusinessUnitComponent {
@Input() pathTitle = ['การจัดการข้อมูลองค์กร', 'ทะเบียนบริษัท', 'สาขาและหน่วยธุรกิจ' ,'ทะเบียนฝ่าย']
@Output() sendPathTitle: EventEmitter<string[]> = new EventEmitter<string[]>(); }