summaryrefslogtreecommitdiffstats
path: root/portal-FE-os/src/app/pages/information-tooltip/information-tooltip.component.ts
blob: 3c05d074dd0228bd6f9a2ee7b163843b7329a657 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { Component, OnInit, Input } from '@angular/core';

@Component({
  selector: 'app-information-tooltip',
  templateUrl: './information-tooltip.component.html',
  styleUrls: ['./information-tooltip.component.scss']
})
export class InformationTooltipComponent implements OnInit {

  @Input() textMessage : any;
  constructor() { }

  message : string;
  ngOnInit() {
    console.log("Message ", this.textMessage);
    this.message = this.textMessage;
  }

}