mirror of
https://github.com/CaramelFur/Picsur.git
synced 2025-11-08 04:55:39 +01:00
11 lines
222 B
TypeScript
11 lines
222 B
TypeScript
|
|
import { Component, OnInit } from '@angular/core';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
templateUrl: './settings-syspref.component.html',
|
||
|
|
})
|
||
|
|
export class SettingsSysprefComponent implements OnInit {
|
||
|
|
constructor() {}
|
||
|
|
|
||
|
|
ngOnInit(): void {}
|
||
|
|
}
|