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