refactor: Create uhk-header component (#354)
Create a header wrapper component that will contains the undo notification component.
This commit is contained in:
committed by
László Monda
parent
3b0540f0d4
commit
131fdea0c5
3
shared/src/components/uhk-header/uhk-header.html
Normal file
3
shared/src/components/uhk-header/uhk-header.html
Normal file
@@ -0,0 +1,3 @@
|
||||
<div>
|
||||
<ng-content></ng-content>
|
||||
</div>
|
||||
9
shared/src/components/uhk-header/uhk-header.ts
Normal file
9
shared/src/components/uhk-header/uhk-header.ts
Normal 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 {
|
||||
}
|
||||
Reference in New Issue
Block a user