pdnsmanager/frontend/src/app/partials/alert/alert.component.ts

14 lines
265 B
TypeScript
Raw Normal View History

2018-04-08 13:02:00 +02:00
import { Component, Input } from '@angular/core';
@Component({
selector: 'app-alert',
templateUrl: './alert.component.html',
styleUrls: ['./alert.component.scss']
})
export class AlertComponent {
@Input() type = 'danger';
constructor() { }
}