mempool/frontend/src/app/components/terms-of-service/terms-of-service.component.ts

15 lines
389 B
TypeScript
Raw Normal View History

2020-10-11 19:23:52 +09:00
import { Component } from '@angular/core';
import { Env, StateService } from '../../services/state.service';
2020-10-11 19:23:52 +09:00
@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,
) { }
2020-10-11 19:23:52 +09:00
}