2019-07-15 14:54:19 +00:00
|
|
|
import { Component, OnInit } from '@angular/core';
|
|
|
|
|
|
|
|
@Component({
|
2019-11-04 12:18:01 +00:00
|
|
|
selector: 'fm-not-found',
|
2019-07-15 14:54:19 +00:00
|
|
|
templateUrl: './not-found.component.html'
|
|
|
|
// styleUrls: ['./not-found.component.css']
|
|
|
|
})
|
|
|
|
export class NotFoundComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
|
|
|
|
ngOnInit() { }
|
|
|
|
}
|