mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-05 08:59:14 +08:00
13 lines
263 B
JavaScript
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;
|