mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-15 02:57:09 +01:00
16 lines
353 B
TypeScript
16 lines
353 B
TypeScript
import { Component } from '@angular/core';
|
|
import { AppViewService } from './services/app-view.service';
|
|
|
|
@Component({
|
|
selector: 'app-root',
|
|
templateUrl: './app.component.html',
|
|
styleUrls: ['./app.component.scss']
|
|
})
|
|
export class AppComponent {
|
|
|
|
constructor (appViewService: AppViewService) {
|
|
appViewService.updateDarkModeSettings()
|
|
}
|
|
|
|
|
|
}
|