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