mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-17 16:41:19 +00:00
17 lines
353 B
TypeScript
17 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()
|
|
}
|
|
|
|
|
|
}
|