FarmMapsLib/projects/common/src/fm/components/not-implemented/not-implemented.component.ts
Willem Dantuma 471a85a428
All checks were successful
FarmMaps.Develop/FarmMapsLib/develop This commit looks good
Add NotImplemented component
2019-11-08 13:37:38 +01:00

12 lines
257 B
TypeScript

import { Component, OnInit } from '@angular/core';
@Component({
selector: 'fm-not-implemented',
templateUrl: './not-implemented.component.html'
})
export class NotImplementedComponent implements OnInit {
constructor() { }
ngOnInit() { }
}