Add coverage to app.component
[portal/nonrtric-controlpanel.git] / webapp-frontend / src / app / services / ui / ui.service.ts
index c475f1d..eea2ce3 100644 (file)
@@ -31,4 +31,8 @@ export class UiService {
     this.darkModeState = new BehaviorSubject<boolean>(true);
     this.expanded = new Observable<boolean>();
   }
+
+  getDarkMode(): boolean {
+    return this.darkModeState.getValue();
+  }
 }