mirror of
https://github.com/CaramelFur/Picsur.git
synced 2025-11-16 00:15:47 +01:00
13 lines
222 B
TypeScript
13 lines
222 B
TypeScript
|
|
import { Component, OnInit } from '@angular/core';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
templateUrl: './settings-users.component.html',
|
||
|
|
})
|
||
|
|
export class SettingsUsersComponent implements OnInit {
|
||
|
|
constructor() {}
|
||
|
|
|
||
|
|
ngOnInit(): void {
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|