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

29 lines
623 B
TypeScript

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