educational-objective.component.ts 466 Bytes
Newer Older
Romain DELEAU's avatar
Romain DELEAU committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
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 {
  }

Romain DELEAU's avatar
Romain DELEAU committed
15
  displayMenu: string = 'hide';
Romain DELEAU's avatar
Romain DELEAU committed
16

17 18
  onClickDots(): void {

Romain DELEAU's avatar
Romain DELEAU committed
19 20 21 22 23 24 25 26 27 28
  }

  onClickAdd(): void {
    
  }

  onClickErase(): void {
    
  }

Romain DELEAU's avatar
Romain DELEAU committed
29
}