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[]>();

  currentTab = 1
  onSendPathTitle(pathTitle: string) {
    this.sendPathTitle.emit(['การจัดการข้อมูลองค์กร', 'ทะเบียนบริษัท', 'สาขาและหน่วยธุรกิจ', pathTitle])
  }
}