member_webapp/@overflow/member/component/member-policy.component.ts
crusader e46aa26170 ing
2018-05-31 21:11:31 +09:00

28 lines
451 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;
}
}