mirror of
https://github.com/fabioformosa/quartz-manager.git
synced 2026-05-15 06:10:29 +09:00
16 lines
297 B
TypeScript
16 lines
297 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'qrzmng-generic-error',
|
|
templateUrl: './genericError.component.html',
|
|
styleUrls: ['./genericError.component.css']
|
|
})
|
|
export class GenericErrorComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit() {
|
|
}
|
|
|
|
}
|