mempool/frontend/src/app/components/trademark-policy/trademark-policy.component.ts
wiz 334f9358b0
Add new page for Trademark Policy and Guidelines (#647)
* Add new page for Trademark Policy and Guidelines

* Fix attribution footer at bottom of Trademark Policy

* Add our Trademark Notice and Trademark Policy URL to LICENSE

* Last minute fixes to Trademark Policy and Guidelines page
2021-07-24 22:40:11 +03:00

16 lines
442 B
TypeScript

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