This commit is contained in:
Peter Maquiran
2022-12-17 17:52:35 +01:00
parent 067c54bf00
commit 1c8abb2de7
11 changed files with 101 additions and 20 deletions
@@ -0,0 +1,15 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-add-user',
templateUrl: './add-user.page.html',
styleUrls: ['./add-user.page.scss'],
})
export class AddUserPage implements OnInit {
constructor() { }
ngOnInit() {
}
}