12 lines
257 B
TypeScript
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() { }
|
||
|
}
|