Files
FarmMapsLib/projects/common/src/fm/components/not-implemented/not-implemented.component.ts
2026-01-20 15:57:18 +01:00

13 lines
280 B
TypeScript

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