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

29 lines
605 B
TypeScript

import {Component, Input} from '@angular/core';
@Component({
selector: 'datasetsTab',
template: `
<div *ngIf="datasets == undefined" class = "alert alert-info " >
There are no datasets
</div>
<div *ngIf="datasets != 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 DatasetsTabComponent {
@Input() datasets;
constructor () {}
ngOnInit() {}
ngOnDestroy() {}
}