import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-goal-header', templateUrl: './goal-header.component.html', styleUrls: ['./goal-header.component.scss'] }) export class GoalHeaderComponent implements OnInit { title = "Goal Plan Inventory"; menu: any; constructor() { } ngOnInit(): void { this.menu = [ { name: 'Goal Plan', path: '/goals/goal-plan-inventory', show: true, is_active: 'active'}, { name: 'Form', path: '/goals/form', show: false, is_active: 'active'}, ]; } }