mempool/frontend/src/app/components/terms-of-service/terms-of-service.component.ts
wiz 14db7e4c8b
Update ToS for copyright, mempool.space operator, external link policy (#377)
Update ToS for copyright, mempool.space operator, external link policy
2021-03-05 19:07:31 +07:00

15 lines
389 B
TypeScript

import { Component } from '@angular/core';
import { Env, StateService } from '../../services/state.service';
@Component({
selector: 'app-terms-of-service',
templateUrl: './terms-of-service.component.html'
})
export class TermsOfServiceComponent {
officialMempoolSpace = this.stateService.env.OFFICIAL_MEMPOOL_SPACE;
constructor(
private stateService: StateService,
) { }
}