21 lines
544 B
TypeScript
21 lines
544 B
TypeScript
import {Component, EventEmitter, Input, OnInit, Output} from '@angular/core';
|
|
import {Store} from '@ngrx/store';
|
|
|
|
@Component({
|
|
selector: 'of-member-confirm-reset-password-container',
|
|
templateUrl: './member-confirm-reset-password-container.component.html',
|
|
})
|
|
export class MemberConfirmResetPasswordContainerComponent implements OnInit {
|
|
@Input() token: string;
|
|
@Output() signin = new EventEmitter();
|
|
@Output() modifyPassword = new EventEmitter();
|
|
|
|
constructor(
|
|
private store: Store<any>,
|
|
) {
|
|
|
|
}
|
|
ngOnInit(): void {
|
|
}
|
|
}
|