13 lines
280 B
TypeScript
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() { }
|
|
}
|