explore-services/portal-2/src/app/landingPages/dataProvider/statisticsTab.component.ts

29 lines
617 B
TypeScript

import {Component, Input} from '@angular/core';
@Component({
selector: 'statisticsTab',
template: `
<div *ngIf="statistics == undefined" class = "alert alert-info " >
There are no statistics
</div>
<div *ngIf="statistics != undefined">
<p>
The results below are discovered through our pilot algorithms.
<a href="mailto:">Let us know how we are doing!</a>
</p>
</div>
`
})
export class StatisticsTabComponent {
@Input() statistics;
constructor () {}
ngOnInit() {}
ngOnDestroy() {}
}