FarmMapsLib/projects/common/src/fm/components/not-found/not-found.component.ts
Willem Dantuma cec43a636c
All checks were successful
FarmMaps.Develop/FarmMapsLib/develop This commit looks good
Renamed prefixes in angular.json
2019-11-04 13:43:46 +01:00

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() { }
}