member_webapp/@overflow/member/component/member-policy.component.ts
crusader 869fcf4e72 ing
2018-05-28 14:41:56 +09:00

28 lines
450 B
TypeScript

import {Component, OnInit, OnDestroy, EventEmitter, Input, Output} from '@angular/core';
@Component({
selector: 'of-member-policy',
templateUrl: './member-policy.component.html',
})
export class MemberPolicyComponent implements OnInit, OnDestroy {
@Input() policyDisplay;
@Output() close = new EventEmitter();
constructor(
) {
}
ngOnInit() {
}
ngOnDestroy() {
}
onTermsClose() {
this.policyDisplay = false;
}
}