aboutsummaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/src/app/shared/components/formControlError/formControlError.component.ts
blob: a20b260305f762102fa7c80c8dd013391b2de264 (plain)
1
2
3
4
5
6
7
8
9
10
import { Component, Input } from '@angular/core';

@Component({
  selector : 'form-control-error',
  templateUrl : 'formControlError.component.html',
  styleUrls : ['formControlError.component.scss']
})
export class FormControlErrorComponent {
  @Input() message = null;
}