13 lines
287 B
TypeScript
13 lines
287 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'fm-not-found',
|
|
templateUrl: './not-found.component.html'
|
|
// styleUrls: ['./not-found.component.css']
|
|
})
|
|
export class NotFoundComponent implements OnInit {
|
|
constructor() { }
|
|
|
|
ngOnInit() { }
|
|
}
|