FarmMapsLib/projects/common/src/fm/components/not-implemented/not-implemented.component.ts

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