12 lines
295 B
TypeScript
12 lines
295 B
TypeScript
import {Component, OnInit} from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'of-member-confirm-reset-password',
|
|
templateUrl: './member-confirm-reset-password.component.html',
|
|
})
|
|
export class MemberConfirmResetPasswordComponent implements OnInit {
|
|
constructor() { }
|
|
ngOnInit(): void {
|
|
}
|
|
}
|