refactor: Create uhk-header component (#354)

Create a header wrapper component that will contains the undo
notification component.
This commit is contained in:
Róbert Kiss
2017-07-15 14:41:06 +02:00
committed by László Monda
parent 3b0540f0d4
commit 131fdea0c5
7 changed files with 89 additions and 67 deletions

View File

@@ -0,0 +1,3 @@
<div>
<ng-content></ng-content>
</div>

View File

@@ -0,0 +1,9 @@
import { ChangeDetectionStrategy, Component } from '@angular/core';
@Component({
selector: 'uhk-header',
templateUrl: './uhk-header.html',
changeDetection: ChangeDetectionStrategy.OnPush
})
export class UhkHeader {
}