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