openaire-library/dashboard/plugins/components/how-to-use/plugin-how-to-use.component.ts

13 lines
314 B
TypeScript

import {Component} from '@angular/core';
import {PluginBaseComponent} from "../../utils/base-plugin.component";
@Component({
selector: 'plugin-how-to-use',
templateUrl: 'plugin-how-to-use.component.html'
})
export class PluginHowToUseComponent extends PluginBaseComponent{
constructor() {
super()
}
}