woocommerce-paypal-payments/modules/ppcp-axo/resources/js/Components/DomElement.js
2024-03-08 14:39:50 +00:00

13 lines
263 B
JavaScript

class DomElement {
constructor(config) {
this.config = config;
this.selector = this.config.selector;
this.id = this.config.selector || null;
this.className = this.config.selector || null;
}
}
export default DomElement;