JSFiddle - React, Tailwind, and code Playground
by nocircleno
JavaScript
import DependencyClassExample from 'dependencyClassExample';
class MyClassExample {
constructor({id=0} = {}) {
this._id = id;
}
get id(){
return this._id;
}
set id(value){
this._id = value;
}
doSomething() {
this._paused = false;
}
}
export MyClassExample;