8 lines
218 B
TypeScript
8 lines
218 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'exception-403',
|
|
template: ` <exception type="403" style="min-height: 500px; height: 80%;"></exception> `
|
|
})
|
|
export class Exception403Component {}
|