import { Component, OnInit, Input } from '@angular/core';
@Component({
selector: 'app-form-validation',
template: `
{{message}}
`,
styles: []
})
export class FormValidationComponent implements OnInit {
@Input() show: boolean = false;
@Input() danger: boolean = true;
@Input() message: string = '';
constructor() { }
ngOnInit() {
}
}