import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-educational-objective', templateUrl: './educational-objective.component.html', styleUrls: ['./educational-objective.component.scss'] }) export class EducationalObjectiveComponent implements OnInit { constructor() { } ngOnInit(): void { } displayMenu: string = 'hide'; onClickComments(): void { } onClickAdd(): void { } onClickErase(): void { } }