woocommerce-paypal-payments/modules/ppcp-axo/resources/js/Components/DomElement.js

14 lines
263 B
JavaScript
Raw Normal View History

2024-03-08 14:39:50 +00:00
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;