angular-formio
Version:
The Form.io dynamic form and data management system for Angular.
11 lines (9 loc) • 353 B
text/typescript
import { Component } from '@angular/core';
import { FormioAlerts } from './formio.alerts';
({
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) {}
}