mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-28 11:03:10 +00:00
15 lines
377 B
TypeScript
Executable File
15 lines
377 B
TypeScript
Executable File
import {Component} from '@angular/core';
|
|
import {FormControl} from '@angular/forms';
|
|
|
|
/**
|
|
* @title Tooltip with a changing message
|
|
*/
|
|
@Component({
|
|
selector: 'tooltip-message-example',
|
|
templateUrl: 'tooltip-message-example.html',
|
|
styleUrls: ['tooltip-message-example.css'],
|
|
})
|
|
export class TooltipMessageExample {
|
|
message = new FormControl('Info about the action');
|
|
}
|