Add NotImplemented component
All checks were successful
FarmMaps.Develop/FarmMapsLib/develop This commit looks good

This commit is contained in:
Willem Dantuma
2019-11-08 13:37:38 +01:00
parent bd4be813ae
commit 471a85a428
3 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
<div class="wrapper">
<header class="header header--large">
<h1 class="title">Function is not implemented in this code</h1>
</header>
</div>

View File

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