JSFiddle - React, Tailwind, and code Playground
Babel + JSX
class SomeClass {
constructor () {
this.counter = 0;
}
increment () {
this.counter = counter + 1;
}
};
const someClosure = () => {
let counter = 0;
};