\ No newline at end of file
+
diff --git a/shared/src/components/uhk-header/uhk-header.html b/shared/src/components/uhk-header/uhk-header.html
new file mode 100644
index 00000000..93af3044
--- /dev/null
+++ b/shared/src/components/uhk-header/uhk-header.html
@@ -0,0 +1,3 @@
+
+
+
diff --git a/shared/src/components/uhk-header/uhk-header.ts b/shared/src/components/uhk-header/uhk-header.ts
new file mode 100644
index 00000000..7e466b1d
--- /dev/null
+++ b/shared/src/components/uhk-header/uhk-header.ts
@@ -0,0 +1,9 @@
+import { ChangeDetectionStrategy, Component } from '@angular/core';
+
+@Component({
+ selector: 'uhk-header',
+ templateUrl: './uhk-header.html',
+ changeDetection: ChangeDetectionStrategy.OnPush
+})
+export class UhkHeader {
+}
diff --git a/web/src/app.module.ts b/web/src/app.module.ts
index 693f80ad..8ff4a14c 100644
--- a/web/src/app.module.ts
+++ b/web/src/app.module.ts
@@ -86,7 +86,8 @@ import { DefaultUserConfigurationService } from './shared/services/default-user-
import { reducer } from './shared/store/reducers/index';
import { LogService } from './shared/services/logger.service';
import { AutoUpdateSettings } from './shared/components/auto-update-settings/auto-update-settings';
-import { angularNotifierConfig } from '../../shared/src/models/angular-notifier-config';
+import { angularNotifierConfig } from './shared/models/angular-notifier-config';
+import { UhkHeader } from './shared/components/uhk-header/uhk-header';
@NgModule({
declarations: [
@@ -139,7 +140,8 @@ import { angularNotifierConfig } from '../../shared/src/models/angular-notifier-
CancelableDirective,
TooltipDirective,
SafeStylePipe,
- AutoUpdateSettings
+ AutoUpdateSettings,
+ UhkHeader
],
imports: [
BrowserModule,