Files
doneit-web/src/app/shared/chat/add-user/add-user.page.ts
T

16 lines
263 B
TypeScript
Raw Normal View History

2022-12-17 17:52:35 +01:00
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() {
}
}