21 lines
358 B
TypeScript
21 lines
358 B
TypeScript
import { Component, OnInit,ViewEncapsulation } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'ms-error-503',
|
|
templateUrl:'./error-503-component.html',
|
|
styleUrls: ['./error-503-component.scss'],
|
|
encapsulation: ViewEncapsulation.None
|
|
})
|
|
export class ErrorTwoComponent implements OnInit {
|
|
|
|
constructor() {}
|
|
|
|
ngOnInit() {
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|