This repository has been archived on 2025-03-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
cetra/lib/plugins/CetraPlugin.js

12 lines
242 B
JavaScript

export default class CetraPlugin {
constructor() {}
register(name, id) {
console.log('register method not implemented', this.constructor.name);
}
initComponent(el) {
console.log('there is no init method for this element', el);
}
}