2020-10-11 19:23:52 +09:00
|
|
|
import { Component } from '@angular/core';
|
2021-03-05 21:07:31 +09:00
|
|
|
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 {
|
2021-03-05 21:07:31 +09:00
|
|
|
officialMempoolSpace = this.stateService.env.OFFICIAL_MEMPOOL_SPACE;
|
|
|
|
|
|
|
|
constructor(
|
|
|
|
private stateService: StateService,
|
|
|
|
) { }
|
2020-10-11 19:23:52 +09:00
|
|
|
}
|