13 lines
336 B
TypeScript
13 lines
336 B
TypeScript
|
import {Component} from '@angular/core';
|
||
|
import {PluginBaseComponent} from "../../utils/base-plugin.component";
|
||
|
|
||
|
@Component({
|
||
|
selector: 'plugin-featured-datasets',
|
||
|
templateUrl: 'plugin-featured-datasets.component.html'
|
||
|
})
|
||
|
export class PluginFeaturedDatasetsComponent extends PluginBaseComponent{
|
||
|
constructor() {
|
||
|
super()
|
||
|
}
|
||
|
}
|