FarmMapsLib/projects/common/src/lib/components/not-found/not-found.component.ts

13 lines
284 B
TypeScript
Raw Normal View History

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