UNPKG

angular-formio

Version:

The Form.io dynamic form and data management system for Angular.

11 lines (9 loc) 353 B
import { Component } from '@angular/core'; import { FormioAlerts } from './formio.alerts'; @Component({ selector: 'formio-alerts', template: '<div *ngFor="let alert of alerts.alerts" class="alert alert-{{ alert.type }}" role="alert">{{ alert.message }}</div>' }) export class FormioAlertsComponent { constructor(public alerts: FormioAlerts) {} }