Add NotImplemented component
FarmMaps.Develop/FarmMapsLib/develop This commit looks good Details

pull/1/head
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

@ -39,6 +39,7 @@ import { SessionClearedComponent } from './components/session-cleared/session-cl
import { ResumableFileUploadService } from './components/resumable-file-upload/resumable-file-upload.service';
import { ResumableFileUploadComponent } from './components/resumable-file-upload/resumable-file-upload.component';
import { NotFoundComponent } from './components/not-found/not-found.component';
import { NotImplementedComponent } from './components/not-implemented/not-implemented.component';
import { SidePanelComponent } from './components/side-panel/side-panel.component';
import { TimespanComponent } from './components/timespan/timespan.component';
import { TagInputComponent } from './components/tag-input/tag-input.component';
@ -76,6 +77,7 @@ export {FolderService,
ResumableFileUploadService,
ResumableFileUploadComponent,
NotFoundComponent,
NotImplementedComponent,
SidePanelComponent,
TimespanComponent,
TagInputComponent,
@ -115,6 +117,7 @@ export {FolderService,
SidePanelComponent,
SafePipe,
NotFoundComponent,
NotImplementedComponent,
ResumableFileUploadComponent,
TimespanComponent,
TagInputComponent,
@ -130,6 +133,7 @@ export {FolderService,
SidePanelComponent,
SafePipe,
NotFoundComponent,
NotImplementedComponent,
ResumableFileUploadComponent,
TimespanComponent,
TagInputComponent,

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