Update our Terms of Service, split Privacy Policy into its own page

This commit is contained in:
wiz
2021-08-02 18:42:18 +09:00
parent d92827a411
commit 10fa39634e
9 changed files with 103 additions and 24 deletions

View File

@@ -0,0 +1,15 @@
import { Component } from '@angular/core';
import { Env, StateService } from '../../services/state.service';
@Component({
selector: 'app-privacy-policy',
templateUrl: './privacy-policy.component.html',
styleUrls: ['./privacy-policy.component.scss']
})
export class PrivacyPolicyComponent {
officialMempoolSpace = this.stateService.env.OFFICIAL_MEMPOOL_SPACE;
constructor(
private stateService: StateService,
) { }
}